0.1.0 • Published 5 years ago

autogiro v0.1.0

Weekly downloads
-
License
ISC
Repository
-
Last release
5 years ago

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