Skip to content

Commit

Permalink
For Venus test
Browse files Browse the repository at this point in the history
  • Loading branch information
energy-coresky committed Sep 1, 2023
1 parent 435bab8 commit c4a44c0
Show file tree
Hide file tree
Showing 4 changed files with 29 additions and 2 deletions.
Binary file modified earth.base
Binary file not shown.
2 changes: 1 addition & 1 deletion mvc/earth_vars.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
last_sand jsc
last_sand php
last_docs 12
last_func 5
width 100
Expand Down
16 changes: 15 additions & 1 deletion mvc/sand/jsc-arrow-func.txt
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,18 @@ out = ary.map(v => v.length)
var v = 'arrow cool';
var arr = () => v;
out = arr()

~
const allCSS = [...document.styleSheets]
.map((styleSheet) => {
try {
return [...styleSheet.cssRules].map((rule) => rule.cssText).join("");
} catch (e) {
console.log(
"Access to stylesheet %s is denied. Ignoring�",
styleSheet.href,
);
}
})
.filter(Boolean)
.join("\n");
~
13 changes: 13 additions & 0 deletions mvc/sand/jsc-y.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
const allCSS = [...document.styleSheets]
.map((styleSheet) => {
try {
return [...styleSheet.cssRules].map((rule) => rule.cssText).join("");
} catch (e) {
console.log(
"Access to stylesheet %s is denied. Ignoring�",
styleSheet.href,
);
}
})
.filter(Boolean)
.join("\n");

0 comments on commit c4a44c0

Please sign in to comment.