We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ac9e1ee commit 39abc0dCopy full SHA for 39abc0d
src/lualib/NumberToString.ts
@@ -1,4 +1,3 @@
1
-// tslint:disable-next-line: variable-name
2
const ____radixChars = "0123456789abcdefghijklmnopqrstuvwxyz";
3
4
// https://www.ecma-international.org/ecma-262/10.0/index.html#sec-number.prototype.tostring
src/lualib/Symbol.ts
const ____symbolMetatable = {
__tostring(this: symbol): string {
return `Symbol(${this.description || ""})`;
src/lualib/SymbolRegistry.ts
const ____symbolRegistry: Record<string, symbol> = {};
function __TS__SymbolRegistryFor(this: void, key: string): symbol {
0 commit comments