right-align-keys

0.1.2 • Public • Published

right-align-keys NPM version Build Status

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.

Package Sidebar

Install

npm i right-align-keys

Weekly Downloads

0

Version

0.1.2

License

MIT

Last publish

Collaborators

  • jonschlinkert