npm stats
  • Search
  • About
  • Repo
  • Sponsor
  • more
    • Search
    • About
    • Repo
    • Sponsor

Made by Antonio Ramirez

map-trace

1.0.0

@stevemao

npmHomeRepoSnykSocket
Downloads:110
$ npm install map-trace
DailyWeeklyMonthlyYearly

Usage

const trace = require('trace');

var dasherize = compose(join('-'), toLower, trace('after split'), split(' '), replace(/\s{2,}/ig, ' '));
// after split [ 'The', 'world', 'is', 'a', 'vampire' ]

dasherize('The world is a vampire');

For more details, please see https://drboolean.gitbooks.io/mostly-adequate-guide/content/ch5.html#debugging