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