Show More
Commit Description:
change to encrypted cookies
Commit Description:
change to encrypted cookies
References:
File last commit:
Show/Diff file:
Action:
node_modules/es5-ext/test/string/#/@@iterator/shim.js
| 9 lines
| 310 B
| application/javascript
| JavascriptLexer
|
r789 | "use strict"; | |||
module.exports = function (t, a) { | ||||
var it = t.call("r💩z"); | ||||
a.deep(it.next(), { done: false, value: "r" }, "#1"); | ||||
a.deep(it.next(), { done: false, value: "💩" }, "#2"); | ||||
a.deep(it.next(), { done: false, value: "z" }, "#3"); | ||||
a.deep(it.next(), { done: true, value: undefined }, "End"); | ||||
}; | ||||