UNPKG

@yokgs/dyescript-light

Version:

Command Line Interface of lightweight (& pre-published) version of @yokgs/DyeScript

9 lines 203 B
module.exports = ($) => { $ = $ || '' let r = $; let m = [...($.match(/[A-Z]{1}/g) || [])]; m.map(x => { r = r.replaceAll(x, '-' + x.toLowerCase()); }) return r; }