use icon indicating copy to clipboard operation
use copied to clipboard

resolves #2 and #4 (bullets 4 and 5 of #4)

Open tunnckoCore opened this issue 7 years ago • 3 comments

ref #2 and #4, and also switch assert.equal to assert.strictEqual (sorry, habit)

So, the whole thing around is control.

  1. Control arguments of the "top-level" plugins, these that firstly are passed directly to .use
  2. Control arguments of the "smart" (?) plugins, these that .run runs

Examples

var app = {}
use(app, {
  params: ['foo', 123]
})
app.use(function instantPlugin(str, num) {
  console.log(foo, bar) //=> foo, 123

  return function pluginTwo(aa, bb) {
    console.log(aa, bb) //=> 111, 222
  }
})
app.run(111, 222)

tunnckoCore avatar Jul 20 '16 04:07 tunnckoCore

ping for thoughts on comments? To move forward. Just always comes to that I need multiple arguments. :D

tunnckoCore avatar Aug 09 '16 09:08 tunnckoCore

Hey sorry! I'm working on a deadline but will review ASAP.

jonschlinkert avatar Aug 09 '16 17:08 jonschlinkert

Yea, okey, no problems! :)

tunnckoCore avatar Aug 10 '16 22:08 tunnckoCore