Package Exports
- right-align-keys
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (right-align-keys) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
right-align-keys

Right align the keys of an object.
Install
Install with npm
$ npm i right-align-keys --save
Usage example
align({
a: 'x',
bbb: 'x',
ccccc: 'x',
ddddddd: 'x'
});
Results in:
{
' a': 'x',
' bbb': 'x',
' ccccc': 'x',
'ddddddd': 'x'
}
Related projects
- longest: Get the longest item in an array.
- longest-value: Get the longest value for the given property from an array of objects, or the… more
- pad-left: Left pad a string with zeros or a specified string. Fastest implementation.
- pad-right: Right pad a string with zeros or a specified string. Fastest implementation.
- repeat-element: Create an array by repeating the given value n times.
- repeat-string: Repeat the given string n times. Fastest implementation for repeating a string.
- right-align-values: Right align the values of a given property for each object in an array. Useful… more
- right-pad-keys: Right pad the keys of an object.
- right-pad-values: Right pad the values of a given property for each object in an array. Useful… more
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 © 2015 Jon Schlinkert Released under the MIT license.
This file was generated by verb-cli on August 15, 2015.