1.0.1 • Published 6 years ago

firstpacketmodule v1.0.1

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

firstpacketmodule

Installation

npm install firstpacketmodule --save

Usage

JavaScript

var firstmodule = require('firstpacketmodule');
var output = firstmodule.helloWorldFunction();
console.log(output);
Output should be 'Hello World - ALL'

AMD

exports.helloWorldFunction= function()
{
	console.log("Hello World - ALL");
};

Test

npm run test