UNPKG

kasi

Version:

A collection of functions for working with different casings.

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