lik/ts/lik.fastmap.ts

12 lines
249 B
TypeScript
Raw Normal View History

2020-02-06 11:11:16 +00:00
import * as plugins from './lik.plugins';
export class FastMap<T> {
private mapObject: { [key: string]: T } = {};
public isUniqueKey() {}
public addToMap(identifier: string, objectArg: T) {
this.mapObject[identifier] = objectArg;
}
}