//#region src/typescript/helpers/utilities.d.ts /** * Check if a string is a valid JavaScript identifier. * * @param identifier - The string to check. * @returns `true` if the string is a valid JavaScript identifier, `false` otherwise. */ declare function isValidJSIdentifier(identifier: string): boolean; //#endregion export { isValidJSIdentifier as t }; //# sourceMappingURL=utilities-BtXOWwjJ.d.mts.map