You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
660 B
JavaScript
29 lines
660 B
JavaScript
var { each, map } = require('sjs:sequence');
|
|
var { get } = require('sjs:http');
|
|
|
|
function foo(items, nada) {
|
|
var component = { name: "Ace", role: "Editor" };
|
|
console.log("
|
|
Welcome, #{component.name}
|
|
".trim());
|
|
|
|
logging.debug(`Component added: $String(component) (${component})`);
|
|
|
|
console.log(`
|
|
Welcome, {${function() {
|
|
return { x: 1, y: "why?}"};
|
|
}()}
|
|
`.trim());
|
|
|
|
waitfor {
|
|
items .. each.par { |item|
|
|
get(item);
|
|
}
|
|
} and {
|
|
var lengths = items .. map(i -> i.length);
|
|
} or {
|
|
hold(1500);
|
|
throw new Error("timed out");
|
|
}
|
|
} // Real Tab.
|