autogiro
A Node.js module to handle files from Swedish Autogiro
Installation
npm install autogiro --save
yarn add autogiro
bower install pluralize --save
Usage
Javascript
var autogiro = require('autogiro');
var hello = autogiro.hello('Autogiro');
Output should be 'Hello Autogiro'
TypeScript
import { hello } from 'autogiro';
console.log(hello('Autogiro'))
Output should be 'Hello Autogiro'
AMD
define(function(require,exports,module){
var autogiro = require('autogiro');
});
Test
npm run test