1.0.3 • Published 4 years ago

@eightnineight/iife v1.0.3

Weekly downloads
2
License
MIT
Repository
github
Last release
4 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

4 years ago

1.0.2

4 years ago

1.0.1

4 years ago

1.0.0

4 years ago