1.0.3 • Published 6 years ago

@eightnineight/iife v1.0.3

Weekly downloads
2
License
MIT
Repository
github
Last release
6 years ago

IIFE

IIFE is javascript Immediately Invoked Function Expression warpper.

Install

> npm install @eightnineight/iife

Usage

const { IIFE } = require('@eightnineight/iife');

IIFE((str)=> {
  console.log(str);
}, 'test');

Result

> test

Effect is equal to

((str) => {
  console.log(str);
})('test');
1.0.3

6 years ago

1.0.2

6 years ago

1.0.1

6 years ago

1.0.0

6 years ago