Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.
get(keyPath: string): mixed {
assert(
this.token,
"Cannot access token before loaded, please use this plugin before any of it's dependencies"
);
return get(this.token, getFullPath(keyPath));
}
set(keyPath: string, val: mixed): boolean {