@cloudcmd/formatify

1.0.4 • Public • Published

Formatify License NPM version Dependency Status Build Status Coverage Status

Format directory content received by readify.

Install

npm i @cloudcmd/formatify --save

API

formatify(files)

  • files - files list

Examples

const files = [{
    name: 'sortify.js',
    size: 3538,
    date,
    owner: 0,
    mode: 33204,
}, {
    name: 'readify.js',
    size: 1629,
    date: 2016-11-21T13:37:55.275Z,
    owner: 0,
    mode: 33204,
}];

formatify(files)
// returns
[{
    name: 'formatify.js',
    size: '3.46kb',
    date: '12.01.2017',
    owner: 0,
    mode: 'rw- rw- r--',
}, {
    name: 'readify.js',
    size: '1.59kb',
    date: '12.01.2017',
    owner: 0,
    mode: 'rw- rw- r--',
}];

Related

  • Sortify - sort directory content by name, size, date
  • Readify - read directory content with file attributes: size, date, owner, mode

License

MIT

Package Sidebar

Install

npm i @cloudcmd/formatify

Weekly Downloads

301

Version

1.0.4

License

MIT

Unpacked Size

5.79 kB

Total Files

5

Last publish

Collaborators

  • coderaiser