UNPKG
mss-adapter
Version:
latest (1.0.3)
1.0.3
1.0.2
1.0.0
Adapters for moysklad synchronizers
github.com/tsypa/node-mss-adapter
tsypa/node-mss-adapter
mss-adapter
/
index.js
11 lines
(8 loc)
•
189 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
'use strict'
;
class
MSSAdapter
{
constructor
(
name, options
) {
const
cls =
require
(
`./lib/
${name}
.js`
);
return
eval
`new cls(name, options)`
; } };
module
.
exports
=
MSSAdapter
;