Files

8 lines
176 B
JavaScript
Raw Permalink Normal View History

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