Skip to content
View dfkaye's full-sized avatar
Block or Report

Block or report dfkaye

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned

  1. get a javascript function name get a javascript function name
    1
    function getFnName(fn) {
    2
      fn = Object(fn)
    3
      var F = typeof fn == 'function'
    4
      var N = fn.name
    5
      var S = F && ((N && ['', N]) || fn.toString().match(/function ([^\(]+)/))
  2. dev-links dev-links Public

    Monthly collections of links to interesting web development posts and resources

    11

  3. safe-math safe-math Public

    Safer floating-point math operations in JavaScript that return results we expect, so that 0.1 + 0.2 adds up to 0.3, e.g.

    JavaScript 4

  4. wheredoc wheredoc Public

    Use docstring-like data tables in JavaScript tests, similar to Cucumber's Scenario Outline Examples: or Spock where: blocks.

    JavaScript 2

  5. my-links my-links Public

    links to my gists and blog posts

  6. safe-object-assign safe-object-assign Public

    Sensible wrapper for Object.assign()

    JavaScript