UNPKG

locutus

Version:

Locutus other languages' standard libraries to JavaScript for fun and educational purposes

11 lines (10 loc) 370 B
export function tolower(x) { // discuss at: https://locutus.io/r/tolower/ // parity verified: R 4.4 // original by: Kevin van Zonneveld (https://kvz.io) // example 1: tolower('HELLO') // returns 1: 'hello' // example 2: tolower('Hello World') // returns 2: 'hello world' return String(x).toLowerCase(); }