ez-web-audio
Version:
Making the Web Audio API super EZ since 2024.
14 lines • 352 B
TypeScript
/**
* @public
* @class utils
*/
/**
* Formats a number and converts to string: 6 becomes '06'
*
* @public
* @method zeroify
* @param {number} input A number that should be formatted
* @return {string} The number formatted and converted to string
*/
export default function zeroify(input: number): string;
//# sourceMappingURL=zeroify.d.ts.map