UNPKG

charset-pl

Version:

polish charset? idk

11 lines (10 loc) 228 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); function toBinary(n, d) { var b = n.toString(2); while (b.length < d) { b = '0' + b; } return b; } exports.default = toBinary;