All Downloads are FREE. Search and download functionalities are using the official Maven repository.

package.2020.ToInt16.js Maven / Gradle / Ivy

There is a newer version: 1.22.3
Show newest version
'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