-
https://github.com/bendrucker/creditcards
This works fine in JSPM because here you have `"main": "index.js",`
and in your /index.js you export
```
'use strict'
exports.card = require('./src/card')…
ghost updated
9 years ago
-
I would suggest to add this condition:
NSString *imageContentType = [NSData sd_contentTypeForImageData:data];
if (!imageContentType) return nil;
So if the library didn't recognize image forma…
-
I don't think I've ever seen any nodejs project warning and erroring this much, nor has I ever seen ANY nodejs project depending on this many libraries. This project is slow and messy, but most of the…
-
```
What steps will reproduce the issue?
1. fetch a movie as a adult movie with gaydvdempire
2. the genre result came out as long HTML script
3.
What is the expected output? What do you see instead…
-
```
What steps will reproduce the issue?
1. fetch the gay adult movies
2. the genre came out as a long html script
3.
What is the expected output? What do you see instead?
the right genre
What is …
-
https://github.com/stripe/jquery.payment/blob/master/src/jquery.payment.coffee
There is a whole list of cc's and regex's that are different in there than what you have.
I trust stripe to have the c…
-
In the demo, I am trying Maestro demo number - 5018 0000 0009, which is a valid number, but Its showing invalid and unknown.
Demo Link I am trying - http://embed.plnkr.co/uE47aZ/preview
-
A function to return the type of CC based on the CC number would be useful
-
If month and year are set as strings not numbers, validation is not in sync.
Like
``` javascript
myCard = {
year: '2019',
month: '10'
};
```
**ccExpMonth.$valid** and **ccExpYear.$valid**…
hinok updated
9 years ago
-
I'm getting an issue with card number validation. `4297 1038 5038 2` is passing but doesn't meet the minimum required length of 16.
Is there a check for the minimum length within your working for the…