@oh77/autogiro

Package to handle files from Swedish Autogiro

Usage no npm install needed!

<script type="module">
  import oh77Autogiro from 'https://cdn.skypack.dev/@oh77/autogiro';
</script>

README

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