![JAR search and dependency download from the Maven repository](/logo.png)
package.2018.ToInt16.js Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of es-abstract Show documentation
Show all versions of es-abstract Show documentation
ECMAScript spec abstract operations.
'use strict';
var ToUint16 = require('./ToUint16');
// https://262.ecma-international.org/6.0/#sec-toint16
module.exports = function ToInt16(argument) {
var int16bit = ToUint16(argument);
return int16bit >= 0x8000 ? int16bit - 0x10000 : int16bit;
};
© 2015 - 2025 Weber Informatics LLC | Privacy Policy