UNPKG

@pipcook/boa-cloud

Version:

Use Python modules seamlessly in Node.js

9 lines (7 loc) 160 B
const math = { add: (a, b) => a + b, subtract: (a, b) => a - b }; export const add = math.add; export const subtract = math.subtract; export default math;