Skip to content

Instantly share code, notes, and snippets.

View Mapaler's full-sized avatar
🎯
主要开发PADDashFormation

枫谷剑仙 Mapaler

🎯
主要开发PADDashFormation
View GitHub Profile
@DimitarNestorov
DimitarNestorov / TokenList.js
Created December 26, 2017 00:54
Simplified custom DOMTokenList implementation.
const forEach = Array.prototype.forEach;
module.exports = class TokenList {
constructor(){
this.tokens = {};
this.add.apply(this, arguments);
}
add(){
const { tokens } = this;