Files

7 lines
202 B
JavaScript
Raw Permalink Normal View History

2025-01-04 00:34:03 +01:00
"use strict";
function extractCharCode(str) {
return str.codePointAt ? str.codePointAt(0) : str.charCodeAt(0);
}
exports.extractCharCode = extractCharCode;
//# sourceMappingURL=extractCharCode.js.map