1.0.7 • Published 3 years ago
hunter_pckg v1.0.7
hunter-package
Exemplo 1
Install package
npm i hunter_pckg
Then
<script src="node_modules/hunter_pckg/dist/index.js"></script>
<script>
const ams = new AppMaxSecurity({
"access-token":"45BAA9B2-4C351C20-42E765E6-592A5AB3",
"api_key":"JlOzMV1vsEhtVotPiWAS",
"card":{
"name":"teste",
"number":"4444222222222222",
"cvv":"123",
"month":1,
"year":25
}
});
ams.load().then(res => console.log(res))
</script>
Exemplo 2
<script src="https://cdn.jsdelivr.net/npm/hunter_pckg@1.0.0/dist/index.js"></script>
<script>
const ams = new AppMaxSecurity({
"access-token":"45BAA9B2-4C351C20-42E765E6-592A5AB3",
"api_key":"JlOzMV1vsEhtVotPiWAS",
"card":{
"name":"teste",
"number":"4444222222222222",
"cvv":"123",
"month":1,
"year":25
}
});
ams.load().then(res => console.log(res))
</script>