Skip to content
This repository was archived by the owner on Jul 12, 2025. It is now read-only.

Commit f825ed6

Browse files
committed
- remove extraneous variables & functions
1 parent 528d441 commit f825ed6

1 file changed

Lines changed: 1 addition & 5 deletions

File tree

src/Class.js

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,7 @@
55

66
"use strict";
77

8-
const PRIVATE = 4, PROTECTED = 2, STATIC = 1;
9-
10-
let _initializing = false,
11-
_scopes = new WeakMap();
8+
let _initializing = false;
129

1310

1411
/*** helper functions ***/
@@ -23,7 +20,6 @@
2320
//checks if the specified classname is valid (note: this doesn't check for reserved words)
2421
return className !== (void 0) && /^[a-z_$][a-z0-9_$]*$/i.test(className);
2522
}
26-
function xor(a, b){ return !!(a ? !b : b); }
2723

2824

2925
/*** shared functions ***/

0 commit comments

Comments
 (0)