UNPKG

locutus

Version:

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

11 lines (10 loc) 385 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.ascii_lowercase = ascii_lowercase; function ascii_lowercase() { // parity verified: Python 3.12 // original by: Yury Shapkarin (https://shapkarin.me) // example 1: ascii_lowercase() // returns 1: 'abcdefghijklmnopqrstuvwxyz' return 'abcdefghijklmnopqrstuvwxyz'; }