UNPKG

react-router-ga

Version:

[![Downloads](https://img.shields.io/npm/dm/react-router-ga)](https://npm.im/react-router-ga) [![Version](https://img.shields.io/npm/v/react-router-ga)](https://npm.im/react-router-ga) [![License](https://img.shields.io/npm/l/react-router-ga)](https://ope

26 lines (23 loc) 511 B
exports.assert = function assert(cond, text) { if (!cond) throw new Error(text); }; exports.stringify = function stringify(arr) { var res = ''; for (var i = 0; i < arr.length; i++) res += String.fromCharCode(arr[i]); return res; }; exports.toArray = function toArray(str) { var res = []; for (var i = 0; i < str.length; i++) { var c = str.charCodeAt(i); var hi = c >>> 8; var lo = c & 0xff; if (hi) res.push(hi, lo); else res.push(lo); } return res; };