Files
CHEVALLIER Abel cb235644dc init
2025-11-13 16:23:22 +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;