UNPKG

locutus

Version:

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

11 lines (10 loc) 381 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.punctuation = punctuation; function punctuation() { // parity verified: Python 3.12 // Original by: Clari (https://github.com/Clari-7744) // example 1: punctuation() // returns 1: "!\"#$%&'()*+,-./:;<=>?@[\\]^_`{|}~" return '!"#$%&\'()*+,-./:;<=>?@[\\]^_`{|}~'; }