Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
chain-able-deps / src / native / BYTE_SIZE_LIST.ts
Size: Mime:
import freeze from '../util/freeze'

/**
 * @see http://www.ecma-international.org/ecma-262/5.1/
 * @type {Object}
 */
const ECMA_SIZES = freeze({
  _STRING: 2,
  _BOOLEAN: 4,
  _NUMBER: 8,
  _NULL: 4,
  _UNDEFINED: 9,
  _FUNCTION: 1,
  _DATE: 1, // string
})

export default ECMA_SIZES