Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/tanis2000/meteor-node-phone
Meteor package of node-phone. See https://github.com/AfterShip/node-phone
https://github.com/tanis2000/meteor-node-phone
Last synced: 4 days ago
JSON representation
Meteor package of node-phone. See https://github.com/AfterShip/node-phone
- Host: GitHub
- URL: https://github.com/tanis2000/meteor-node-phone
- Owner: tanis2000
- Created: 2013-11-22T11:21:34.000Z (almost 11 years ago)
- Default Branch: master
- Last Pushed: 2013-11-22T14:25:49.000Z (almost 11 years ago)
- Last Synced: 2023-03-11T05:44:46.201Z (over 1 year ago)
- Language: JavaScript
- Size: 113 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
meteor-node-phone
=================Meteor package of node-phone. See https://github.com/AfterShip/node-phone
Installation
============
```shell
mrt add phone
```Usage example
=============On the server side:
```javascript
Meteor.methods({
normalizePhone: function(phone) {
var res = Phone(phone, '');
return res;
}
});
```On the client side:
```javascript
var normalized = Meteor.call('normalizePhone', '+39 035 656098');
```