StackGenVis: Alignment of Data, Algorithms, and Models for Stacking Ensemble Learning Using Performance Metrics https://doi.org/10.1109/TVCG.2020.3030352
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
StackGenVis/frontend/node_modules/pad-left/README.md

2.0 KiB

pad-left NPM version

Left pad a string with zeros or a specified string. Fastest implementation.

Install with npm

npm i pad-left --save

Usage

var pad = require('pad-left');
pad('abc', 10);
//=> '          abc'

pad('abc', 10, '~');
//=> '~~~~~~~~~~abc'

Other awesome node.js libraries for padding and aligning strings.

  • align-text: Align the text in a string.
  • center-align: Center-align the text in a string.
  • justified: Wrap words to a specified length and justified the text.
  • pad-right: Right pad a string with zeros or a specified string. Fastest implementation.
  • repeat-string: Repeat the given string n times. Fastest implementation for repeating a string.
  • right-align: Right-align the text in a string.
  • word-wrap: Wrap words to a specified length.

Running tests

Install dev dependencies:

npm i -d && npm test

Contributing

Pull requests and stars are always welcome. For bugs and feature requests, please create an issue

Author

Jon Schlinkert

License

Copyright (c) 2014-2015 Jon Schlinkert Released under the MIT license.


This file was generated by verb-cli on April 27, 2015.