bin.js 307 B

123456789101112131415
  1. "use strict";
  2. Object.defineProperty(exports, "__esModule", {
  3. value: true
  4. });
  5. exports.binDocs = void 0;
  6. var binDocs = {
  7. name: 'bin',
  8. category: 'Utils',
  9. syntax: ['bin(value)'],
  10. description: 'Format a number as binary',
  11. examples: ['bin(2)'],
  12. seealso: ['oct', 'hex']
  13. };
  14. exports.binDocs = binDocs;