1
0
Fork 0
arangodb/js/node/node_modules/js-yaml/test/samples-common/construct-javascript-functi...

13 lines
275 B
YAML

- !!js/function 'function () { return 42 }'
- !!js/function 'function (x, y) { return x + y; } '
- !!js/function |
function (foo) {
var result = 'There is my ' + foo + ' at the table.';
return {
first: 42,
second: 'sum',
third: result
};
}