refactor(Cypress): add nodemodules
This commit is contained in:
13
node_modules/syntax-error/test/sources/yield.js
generated
vendored
Normal file
13
node_modules/syntax-error/test/sources/yield.js
generated
vendored
Normal file
@@ -0,0 +1,13 @@
|
||||
function *foo () {
|
||||
yield 5
|
||||
}
|
||||
|
||||
(function *() {
|
||||
console.log(foo().next().value)
|
||||
})().next();
|
||||
|
||||
(function *() { })();
|
||||
|
||||
(function * () {
|
||||
yield yield 3
|
||||
})();
|
Reference in New Issue
Block a user