Browse Source

Merge pull request #19 from crrobinson14/patch-2

Eliminate global var leak.
pull/21/head
Brett Langdon 11 years ago
parent
commit
939c730048
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      lib/api/index.js

+ 1
- 1
lib/api/index.js View File

@ -15,7 +15,7 @@ var api = {
};
module.exports = function(obj){
for(key in api){
for(var key in api){
obj[key] = api[key];
}
};

Loading…
Cancel
Save