UNPKG

ember-material-icons

Version:

Google Material icons for your ember-cli app

9 lines (7 loc) 197 B
"use strict"; module.exports = function getByteLength(string) { if (typeof string !== "string") { throw new Error("Input must be string"); } return Buffer.byteLength(string, "utf8"); };