Dashboard
PHP:
8.4.20
OS:
Linux
User:
sinnett_country
/
/
usr
/
share
/
nodejs
/
es-abstract
/
2017
📤 Upload
📝 New File
📁 New Folder
Close
Editing: ToInt16.js
'use strict'; var ToUint16 = require('./ToUint16'); // https://ecma-international.org/ecma-262/6.0/#sec-toint16 module.exports = function ToInt16(argument) { var int16bit = ToUint16(argument); return int16bit >= 0x8000 ? int16bit - 0x10000 : int16bit; };
Save
Cancel