0.1.1 • Published 7 years ago
@oh77/autogiro v0.1.1
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 --saveUsage
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