Skip to content

Commit dadf906

Browse files
committed
Space
1 parent a92d2d3 commit dadf906

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

packages/css/index.js

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
// based on https://github.com/developit/dlv
22
const get = (obj, key = '', def, p, undef) => {
3-
key = key.split ? key.split('.') : [key]
4-
for (p = 0; p < key.length; p++) {
5-
obj = obj ? obj[key[p]] : undef
6-
}
7-
return obj === undef ? def : obj
3+
key = key.split ? key.split('.') : [key]
4+
for (p = 0; p < key.length; p++) {
5+
obj = obj ? obj[key[p]] : undef
6+
}
7+
return obj === undef ? def : obj
88
}
99

1010
const defaultBreakpoints = [40, 52, 64].map(n => n + 'em')

0 commit comments

Comments
 (0)