UNPKG

kasi

Version:

A collection of functions for working with different casings.

9 lines (8 loc) 197 B
/* IMPORT */ import toSpaceCase from './to_space_case.js'; /* MAIN */ const toPathCase = (value) => { return toSpaceCase(value).replaceAll(' ', '/'); }; /* EXPORT */ export default toPathCase;