Skip to content

Commit 364ba2b

Browse files
committed
feat: add hoistGlobalsAndWrapContext()
1 parent b8a4958 commit 364ba2b

File tree

1 file changed

+25
-0
lines changed

1 file changed

+25
-0
lines changed

lib/hoistGlobalsAndWrapContext.js

+25
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
'use strict';
2+
3+
module.exports = function(styles, selector) {
4+
var global = {};
5+
6+
global[selector] = styles;
7+
8+
for (var key in styles) {
9+
if (key[0] === '@') {
10+
// At-rule.
11+
if (key[1] === 'k') {
12+
// @keyframes
13+
global[key] = styles[key];
14+
} else {
15+
var obj = {};
16+
obj[selector] = styles[key];
17+
global[key] = obj;
18+
}
19+
20+
delete styles[key];
21+
}
22+
}
23+
24+
return global;
25+
};

0 commit comments

Comments
 (0)