module.exports = function digits() { // discuss at: https://locutus.io/python/digits/ // parity verified: Python 3.12 // original by: Kevin van Zonneveld (https://kvz.io) // note 1: Returns the string '0123456789' // example 1: digits() // returns 1: '0123456789' return '0123456789' }