UNPKG
@madisonreed/amazon-payments
Version:
latest (0.2.5)
0.2.5
0.2.3
API wrapper for Amazon Payments
github.com/MadisonReed/amazon-payments
MadisonReed/amazon-payments
@madisonreed/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)); }