Skip to content

Instantly share code, notes, and snippets.

@triacontane
Created February 21, 2021 05:55
Show Gist options
  • Save triacontane/05f6529456b42eee3766e4b2af03223f to your computer and use it in GitHub Desktop.
Save triacontane/05f6529456b42eee3766e4b2af03223f to your computer and use it in GitHub Desktop.
数値を指定桁数で半角スペース埋めします。
(function() {
'use strict';
Number.prototype.padSpace = function(length){
return String(this).padSpace(length);
};
String.prototype.padSpace = function(length){
var s = this;
while (s.length < length) {
s = ' ' + s;
}
return s;
};
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment