angular-credit-cards
Angular directives for parsing and validating credit card inputs
File Explorer
- test.yml
- angular-credit-cards.js
- cvc.js
- expiration.js
- index.js
- number.js
- cc-exp.html
- cvc.js
- expiration.js
- number.js
- README.md
- .gitignore
- .zuul.yml
- bower.json
- LICENSE
- package.json
- README.md
# Use via CDN
jsDelivrjsDelivr serves any public GitHub repository as a CDN with zero setup. Pick a version and a file to get a ready-to-paste link and snippet.
Command Glossary
Commands referenced in this DOCs, explained below.
bower
View Details ▼
bower
A package manager optimized for front-end web development.
A package can be a GitHub user/repo shorthand, a Git endpoint, a URL or a registered package.
bower install
Install a project's dependencies, listed in its `bower.json`:
bower install {{package1 package2 ...}}
Install one or more packages to the bower_components directory:
bower uninstall {{package1 package2 ...}}
Uninstall packages locally from the bower_components directory:
npm install
View Details ▼
npm install
Install Node packages.
npm {{[i|install]}}
Install dependencies listed in `package.json`:
npm {{[i|install]}} {{package_name}}@{{version}}
Download a specific version of a package and add it to the list of dependencies in `package.json`:
npm {{[i|install]}} {{package_name}} {{[-D|--save-dev]}}
Download the latest version of a package and add it to the list of dev dependencies in `package.json`:
select
View Details ▼
select
Bash builtin construct for creating menus.
select {{word}} in {{apple orange pear banana}}; do echo ${{word}}; done
Create a menu out of individual words:
select {{line}} in $({{command}}); do echo ${{line}}; done
Create a menu from the output of another command:
PS3="{{Select a file: }}"; select {{file}} in *; do echo ${{file}}; done
Specify the prompt string for `select` and create a menu for picking a file or folder from the current directory:
