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

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