Repository URL to install this package:
|
Version:
1.2.9 ▾
|
"use strict";
const charCodeAtZero = require("../string/charCodeAtZero");
const stringToArray = require("./stringToArray");
function stringToCharCodes(x) {
return stringToArray(x).map(charCodeAtZero);
}
module.exports = stringToCharCodes;