Initial commit

This commit is contained in:
jiapengyu
2026-07-27 13:37:48 +08:00
commit ecba71e2a5
39123 changed files with 5989154 additions and 0 deletions
+17
View File
@@ -0,0 +1,17 @@
var noop = require('./noop');
exports = function(src, cb) {
cb = cb || noop;
var link = document.createElement('link');
link.rel = 'stylesheet';
link.type = 'text/css';
link.onerror = function() {
cb(false);
};
link.onload = function() {
cb(true);
};
link.href = src;
document.head.appendChild(link);
};
module.exports = exports;