1.0.3 • Published 4 years ago

util-lib-call v1.0.3

Weekly downloads
11
License
ISC
Repository
-
Last release
4 years ago

util-lib-call

Call method of encapsulation integration

Usage

    const utils = require('util-lib-call');

    function add (a, b) {
        console.log('this', this);
        return a + b + this.c;
      }

      let obj = {
        c: 521,
      };
      window.c = 1314;
      
      console.log(utils.call(add, obj, 10, 20));
      console.log(utils.call(add, null, 10, 20));
1.0.2

4 years ago

1.0.3

4 years ago

1.0.1

4 years ago

1.0.0

4 years ago