js-ord
Version:
Get the ASCII value of alphanumeric characters
8 lines (7 loc) • 323 B
JavaScript
const ord = require('./convertToASCII')
const ordFrom = require('./convertFromASCII')
const isUpper = require('./isUpper')
const isLower = require('./isLower')
const shrink = require('./shrink')
const isPalindrome = require('./isPalindrome')
module.exports = { ord, ordFrom, isUpper, isLower, shrink, isPalindrome }