This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const forEach = Array.prototype.forEach; | |
module.exports = class TokenList { | |
constructor(){ | |
this.tokens = {}; | |
this.add.apply(this, arguments); | |
} | |
add(){ | |
const { tokens } = this; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const placeholder = (function(){ | |
const cache = {}; | |
const canvas = document.createElement(`canvas`); | |
const type = (function(){ | |
canvas.width = canvas.height = 100; | |
const context = canvas.getContext(`2d`); | |
context.rect(0, 0, 100, 100); | |
const webp = { | |
type: `image/webp`, | |
quality: 1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function exceptionHandler(){ | |
const error = Error; | |
const nullMessage = "[$rootScope:inprog] null already in progress"; | |
function exception(message){ | |
if(message.indexOf(nullMessage) === 0){ | |
const $rootScope = exceptionHandler.$rootScope; | |
if($rootScope) $rootScope.$$phase = null; | |
const exception = new error(nullMessage); |
NewerOlder