Skip to content
This repository has been archived by the owner on May 23, 2022. It is now read-only.

Commit

Permalink
Fixes internal class checking.
Browse files Browse the repository at this point in the history
  • Loading branch information
robotlolita committed Mar 13, 2014
1 parent 31a0917 commit 5eecc80
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Expand Up @@ -2,7 +2,7 @@
"author": "Quildreen \"Sorella\" Motta <quildreen@gmail.com>",
"name": "polygamous",
"description": "Clojure-style multi-methods for JavaScript.",
"version": "1.0.1",
"version": "1.0.2",
"repository": {
"type": "git",
"url": "git://github.com/killdream/polygamous.git"
Expand Down
2 changes: 1 addition & 1 deletion polygamous.js
Expand Up @@ -88,7 +88,7 @@ function branchMatching(value, branches) {
}

function classOf(a) {
return internalClassOf(a).slice(8, -1)
return internalClassOf.call(a).slice(8, -1)
}

function isPrimitive(a) {
Expand Down

0 comments on commit 5eecc80

Please sign in to comment.