node_modules/es-abstract/2016/SymbolDescriptiveString.js in immosquare-cleaner-0.1.32 vs node_modules/es-abstract/2016/SymbolDescriptiveString.js in immosquare-cleaner-0.1.38
- old
+ new
@@ -1,20 +1,16 @@
'use strict';
-var GetIntrinsic = require('get-intrinsic');
+var $TypeError = require('es-errors/type');
-var $TypeError = GetIntrinsic('%TypeError%');
-
var callBound = require('call-bind/callBound');
var $SymbolToString = callBound('Symbol.prototype.toString', true);
-var Type = require('./Type');
-
// https://262.ecma-international.org/6.0/#sec-symboldescriptivestring
module.exports = function SymbolDescriptiveString(sym) {
- if (Type(sym) !== 'Symbol') {
+ if (typeof sym !== 'symbol') {
throw new $TypeError('Assertion failed: `sym` must be a Symbol');
}
return $SymbolToString(sym);
};