0.0.1 • Published 7 years ago

rata v0.0.1

Weekly downloads
1
License
MIT
Repository
-
Last release
7 years ago

Rata

Tidy up your string list

Installation

$ npm install rata

Usage

const rata = require('rata')

const data = [
    ["eat", "eat some apples"],
    ["play", "play some music"],
    ["cry", "crying about your life"],
    ["makemehappy", "make happy!"]
]

console.log(rata(data))
eat         eat some apples
play        play some music
cry         crying about your life
makemehappy make happy!
const rata = require('rata')

const data = [
    ["eat", "eat some apples"],
    ["play", "play some music"],
    ["cry", "crying about your life"],
    ["makemehappy", "make happy!"]
]

console.log(rata(data, ' - '))
eat         - eat some apples
play        - play some music
cry         - crying about your life
makemehappy - make happy!
0.0.1

7 years ago