diff options
Diffstat (limited to 'node_modules/es-abstract/2015/ToInt8.js')
-rw-r--r-- | node_modules/es-abstract/2015/ToInt8.js | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/node_modules/es-abstract/2015/ToInt8.js b/node_modules/es-abstract/2015/ToInt8.js deleted file mode 100644 index d103123..0000000 --- a/node_modules/es-abstract/2015/ToInt8.js +++ /dev/null @@ -1,10 +0,0 @@ -'use strict'; - -var ToUint8 = require('./ToUint8'); - -// https://www.ecma-international.org/ecma-262/6.0/#sec-toint8 - -module.exports = function ToInt8(argument) { - var int8bit = ToUint8(argument); - return int8bit >= 0x80 ? int8bit - 0x100 : int8bit; -}; |