1
0
Fork 0
mirror of https://github.com/DanielnetoDotCom/YouPHPTube synced 2025-10-04 18:29:39 +02:00
Oinktube/node_modules/bencode/lib/index.js
2023-02-17 15:04:26 -03:00

12 lines
360 B
JavaScript

const bencode = module.exports
bencode.encode = require('./encode.js')
bencode.decode = require('./decode.js')
/**
* Determines the amount of bytes
* needed to encode the given value
* @param {Object|Array|Buffer|String|Number|Boolean} value
* @return {Number} byteCount
*/
bencode.byteLength = bencode.encodingLength = require('./encoding-length.js')