- Complete React app with 7 developer tools - JSON Tool with visual structured editor - Serialize Tool with visual structured editor - URL, Base64, CSV/JSON, Beautifier, Diff tools - Responsive navigation with dropdown menu - Dark/light mode toggle - Mobile-responsive design with sticky header - All tools working with copy/paste functionality
15 lines
272 B
JavaScript
15 lines
272 B
JavaScript
// Generated by CoffeeScript 1.6.3
|
|
module.exports = {
|
|
pad: function(n, width, z) {
|
|
if (z == null) {
|
|
z = '0';
|
|
}
|
|
n = n + '';
|
|
if (n.length >= width) {
|
|
return n;
|
|
} else {
|
|
return new Array(width - n.length + 1).join(z) + n;
|
|
}
|
|
}
|
|
};
|