MyRepo-Ums/node_modules/piscina/test/fixtures/multiple.js
2024-01-19 11:09:11 +01:00

11 lines
116 B
JavaScript

'use strict';
function a () { return 'a'; }
function b () { return 'b'; }
a.a = a;
a.b = b;
module.exports = a;