Giter VIP home page Giter VIP logo

Comments (8)

juliangruber avatar juliangruber commented on May 23, 2024

is that really a problem?

from co.

yanickrochon avatar yanickrochon commented on May 23, 2024

The second "like in browser" will slow down the code as call is slower than a direct function call, plus, the current implementation does not require a function call at all (meaning, it's faster).

You should not yield anything else than a Promise, a GeneratorFunction, a Function or a plain Object anyhow. So, when you say "may have a problem", what kind of problem do you have in mind? Can you give any example of a potential issue with the current implementation? I am all in favor of preventive maintenance, but if it creates bottle necks and does not improve the code in any way...

from co.

wilmoore avatar wilmoore commented on May 23, 2024

return val && 'Object' == val.constructor.name;

This one should fail if someone creates a constructor like this:

var Ctor = function () {}

Because .name will not exist. This can be fixed by changing the expression to var Ctor = function Ctor() {}; however, it is likely that it you'll see the first version instead.

from co.

yanickrochon avatar yanickrochon commented on May 23, 2024

@wilmoore , no, it will not fail, as co is looking if the yielded object context is a function before it checks if it's an Object, So, no problem here.

from co.

wilmoore avatar wilmoore commented on May 23, 2024

as co is looking if the yielded object context is a function before

OH, cool. Well, that's fine then.

from co.

ustccjw avatar ustccjw commented on May 23, 2024

@juliangruber @yanickrochon if the object is just a plain object, that's ok.

If i want to yield a object through a constructor(eg. function A(a) {this.a=a}, yield new A('aaa')),
i think Object.prototype.toString.call(val) === '[object Object]' is always okey.

ps. Actually, constructor can be modified by you, so i think it is not safe. That's the reason that you use Array.isArray(val) instead of Array == val.constructor.

from co.

navaru avatar navaru commented on May 23, 2024

"If it ain't broke don't fix it"

Is there a use case where this fails?

from co.

tj avatar tj commented on May 23, 2024

yielding non-plain objects would be pretty weird and likely break in most cases, it's a pretty questionable feature in the first place haha, handy, but questionable

from co.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.