/
githubmirror
/
amphtml
Обзор
Документация
Войти
/
githubmirror
/
amphtml
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
src/purifier/noop.js
24 строки
461 B
Kristofer Baxter
♻️ Remove Notice from JS and Markdown (#35717)
19 авг 2021, 21:21
Не верифицирован
19 авг 2021, 21:21
f564b7e
Код
Авторство
О чём код?
import {isElement} from '#core/types'; export function dev() { return { assertElement: element => { console.assert(isElement(element), 'Element expected'); return element; }, }; } export function user() { return { error: (unusedTag, var_args) => { console.error.apply(null, Array.prototype.slice.call(arguments, 1)); }, }; } export function devAssert() {} export function userAssert() {} export const urls = {};