UNPKG

274 BJavaScriptView Raw
1import { style } from '..';
2import { normalize } from './css.normalize';
3import { global } from './css.global';
4let isReset = false;
5export function reset() {
6 if (!isReset) {
7 style.global(normalize);
8 style.global(global);
9 isReset = true;
10 }
11}