0.1.1 • Published 6 years ago

@oh77/autogiro v0.1.1

Weekly downloads
2
License
ISC
Repository
-
Last release
6 years ago

autogiro

A Node.js module to handle files from Swedish Autogiro

Installation

npm install @oh77/autogiro --save
yarn add @oh77/autogiro
bower install @oh77/autogiro --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