1.1.0 ā€¢ Published 7 years ago

gro v1.1.0

Weekly downloads
2
License
MIT
Repository
github
Last release
7 years ago

GRO

Usage

const gro = require('gro')

const c = gro('ExampleName')


const gend = c.group('foo')
const tend = c.time('foo')

c.log('Executed foo')

tend()
gend()
ExampleName.foo
|   ExampleName Executed foo
|   Example.Name.foo: 0.186ms
ā””

And

const gro = require('gro')

const gend = gro.group('Foo')
gend()

const tend = gro.time('Bar')
tend()