Son CV dans un terminal web en Javascript!
https://terminal-cv.gregandev.fr
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
247 B
11 lines
247 B
1 year ago
|
'use strict';
|
||
|
|
||
|
var ToUint8 = require('./ToUint8');
|
||
|
|
||
|
// https://ecma-international.org/ecma-262/6.0/#sec-toint8
|
||
|
|
||
|
module.exports = function ToInt8(argument) {
|
||
|
var int8bit = ToUint8(argument);
|
||
|
return int8bit >= 0x80 ? int8bit - 0x100 : int8bit;
|
||
|
};
|