Website : rimsha.abasa.com
backdoor
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
var
/
canvas
/
node_modules
/
polished
/
lib
/
internalHelpers
/
Filename :
_numberToHex.js.flow
back
Copy
// @flow function numberToHex(value: number): string { const hex = value.toString(16) return hex.length === 1 ? `0${hex}` : hex } export default numberToHex