UNPKG

jstrip

Version:

webpage crawler manipulation

10 lines (8 loc) 194 B
/** * Converts string to lowercase. * * @param {*} string value to convert. * @returns string converts value */ const lowercase = cntts => cntts.toLowerCase(); module.exports = lowercase;