UNPKG
amazon-payments
Version:
latest (0.2.9)
0.2.9
0.2.8
0.2.7
0.2.6
0.2.4
0.2.3
0.2.1
0.2.0
0.1.1
0.1.0
0.0.4
0.0.3
0.0.2
0.0.1
API wrapper for Amazon Payments
github.com/MadisonReed/amazon-payments
MadisonReed/amazon-payments
amazon-payments
/
amazonPayments.js
10 lines
(7 loc)
•
237 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
var
Config
=
require
(
'./lib/config'
).
config
;
var
Amazon
=
require
(
'./lib/amazon'
).
amazon
;
exports
.
Environment
=
require
(
'./lib/environment'
);
exports
.
connect
= connect;
function
connect
(
opts
) {
return
new
Amazon
(
new
Config
(opts)); }