@@ -4,7 +4,6 @@
 | 
				
			|||||||
const maxInt = 2147483647; // aka. 0x7FFFFFFF or 2^31-1
 | 
					const maxInt = 2147483647; // aka. 0x7FFFFFFF or 2^31-1
 | 
				
			||||||
 | 
					
 | 
				
			||||||
/** Bootstring parameters */
 | 
					/** Bootstring parameters */
 | 
				
			||||||
//@ts-ignore
 | 
					 | 
				
			||||||
const base = 36;
 | 
					const base = 36;
 | 
				
			||||||
const tMin = 1;
 | 
					const tMin = 1;
 | 
				
			||||||
const tMax = 26;
 | 
					const tMax = 26;
 | 
				
			||||||
@@ -440,4 +439,4 @@ const punycode = {
 | 
				
			|||||||
    'toUnicode': toUnicode
 | 
					    'toUnicode': toUnicode
 | 
				
			||||||
};
 | 
					};
 | 
				
			||||||
 | 
					
 | 
				
			||||||
module.exports = punycode;
 | 
					export = punycode;
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -21,8 +21,8 @@
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
'use strict';
 | 
					'use strict';
 | 
				
			||||||
 | 
					
 | 
				
			||||||
var punycode = require('punycode');
 | 
					import * as punycode from 'punycode'
 | 
				
			||||||
// @ts-ignore
 | 
					
 | 
				
			||||||
var util = {
 | 
					var util = {
 | 
				
			||||||
    isString: function (arg) {
 | 
					    isString: function (arg) {
 | 
				
			||||||
        return typeof (arg) === 'string';
 | 
					        return typeof (arg) === 'string';
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user