Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
@skava/modules / ___dist / chain-able / src / deps / cast / stringToCharCodes.js
Size: Mime:
"use strict";

const charCodeAtZero = require("../string/charCodeAtZero");

const stringToArray = require("./stringToArray");

function stringToCharCodes(x) {
  return stringToArray(x).map(charCodeAtZero);
}

module.exports = stringToCharCodes;