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

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

There is a newer version: 1.22.3
Show newest version
'use strict';

var ToUint8 = require('./ToUint8');

// https://262.ecma-international.org/6.0/#sec-toint8

module.exports = function ToInt8(argument) {
	var int8bit = ToUint8(argument);
	return int8bit >= 0x80 ? int8bit - 0x100 : int8bit;
};




© 2015 - 2025 Weber Informatics LLC | Privacy Policy