feat: use module export

Signed-off-by: MiaoWoo <admin@yumc.pw>
clean
MiaoWoo 2020-04-01 17:53:12 +08:00
parent ee9ae408ec
commit 24fe3b9026
2 changed files with 3 additions and 4 deletions

View File

@ -4,7 +4,6 @@
const maxInt = 2147483647; // aka. 0x7FFFFFFF or 2^31-1
/** Bootstring parameters */
//@ts-ignore
const base = 36;
const tMin = 1;
const tMax = 26;
@ -440,4 +439,4 @@ const punycode = {
'toUnicode': toUnicode
};
module.exports = punycode;
export = punycode;

View File

@ -21,8 +21,8 @@
'use strict';
var punycode = require('punycode');
// @ts-ignore
import * as punycode from 'punycode'
var util = {
isString: function (arg) {
return typeof (arg) === 'string';