Files
Foundry-VTT-Docker/resources/app/node_modules/@pixi/text-bitmap/lib/utils/extractCharCode.mjs

8 lines
176 B
JavaScript
Raw 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