{"maintainers":[{"name":"riceball","email":"snowyu.lee@gmail.com"}],"keywords":["inheritance","class","klass","oop","object-oriented","mixin","inherits","browser","coffee","coffeescript","coffee-script","browserify"],"dist-tags":{"latest":"1.1.8"},"author":{"name":"Riceball LEE","email":"snowyu.lee@gmail.com"},"description":"Browser-friendly enhanced inheritance fully compatible with standard node.js and coffee-script","readme":"### Inherits-Ex [![npm](https://img.shields.io/npm/v/inherits-ex.svg)](https://npmjs.org/package/inherits-ex)\n\n[![Join the chat at https://gitter.im/snowyu/inherits-ex.js](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/snowyu/inherits-ex.js?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)\n\n[![Build Status](https://img.shields.io/travis/snowyu/inherits-ex.js/master.png)](http://travis-ci.org/snowyu/inherits-ex.js)\n[![Code Climate](https://codeclimate.com/github/snowyu/inherits-ex.js/badges/gpa.svg)](https://codeclimate.com/github/snowyu/inherits-ex.js)\n[![Test Coverage](https://codeclimate.com/github/snowyu/inherits-ex.js/badges/coverage.svg)](https://codeclimate.com/github/snowyu/inherits-ex.js/coverage)\n[![downloads](https://img.shields.io/npm/dm/inherits-ex.svg)](https://npmjs.org/package/inherits-ex)\n[![license](https://img.shields.io/npm/l/inherits-ex.svg)](https://npmjs.org/package/inherits-ex)\n\nBrowser-friendly enhanced inheritance fully compatible with standard node.js\n[inherits](http://nodejs.org/api/util.html#util_util_inherits_constructor_superconstructor)\nand coffee-script.\n\nThis package modifies and enhances the standard `inherits` from node.js\n`util` module in node environment. It also has a shim for old\nbrowsers with no `Object.create` support.\n\nDiffers from the standard implementation is:\n\n+ coffee-script supports\n+ multi-inheritances(inheritance chain) supports\n+ inherits at anytime.\n  * you can not declare method/property before inherits in the standard way for it will replace the prototype object.\n+ duplication inheritance check\n+ more helper functions\n\nThe standard `inherits` implementation is in `inherits-ex/lib/inheritsDirectly`,\nof casue it's the coffee-script supports and browser-friendly.\n\n# API\n\n## inherits(ctor, superCtor|[superCtor, ...])\n\n```js\n  var inherits = require('inherits-ex/lib/inherits')\n```\n\nThe enhanced `inherits` implementation.\n\n+ coffee-script supports\n+ multi-inheritances(inheritance chain) supports\n+ inherits at anytime.\n  * you can not declare method/property before inherits in the standard way for it will replace the prototype object.\n+ duplication inheritance check\n+ add the `super_` property(the super ctor) to the ctor.\n+ add the `__super__` property(the super's prototype) to the ctor for the coffeeScirpt `super` keyword.\n+ add the `Class` property(point to the current class) to the object's prototype.\n  * just be care: the ctor may not be the current class.\n\n### usage\n\n```coffee\n\nassert = require('assert')\ninherits = require('inherits-ex/lib/inherits')\nisInheritedFrom = require('inherits-ex/lib/isInheritedFrom')\nlog = console.log.bind console\n\nclass Root\n  m: -> log('root')\n\nclass A\n  inherits A, Root\n  m: ->\n    log('A')\n    super\n\nclass B\n  inherits B, Root\n  m: ->\n    log('B')\n    super\n\nclass MyClass\n  # MyClass -> A -> Root\n  inherits MyClass, B\n  # MyClass -> A -> B -> Root\n  inherits MyClass, A\n\nassert.notOk inherits(A, Root) #duplication inheritances prohibited.\nassert.ok isInheritedFrom(MyClass, A)\nassert.ok isInheritedFrom(MyClass, Root)\nassert.ok isInheritedFrom(MyClass, B)\n\n```\n\nand the following codes do same thing:\n\n```coffee\n\nclass Root\n  m: -> log('root')\n\nclass A\n  m: ->\n    log('A')\n    super\n\nclass B\n  m: ->\n    log('B')\n    super\n\nclass MyClass\n  # create inheritances chain:\n  # MyClass -> A -> B -> Root\n  inherits MyClass, [A, B, Root]\n\nassert.ok isInheritedFrom(MyClass, A)\nassert.ok isInheritedFrom(MyClass, Root)\nassert.ok isInheritedFrom(MyClass, B)\n\n```\n\n## inheritsDirectly(ctor, superCtor)\n\n```js\n  var inheritsDirectly = require('inherits-ex/lib/inheritsDirectly')\n```\n\nThe standard `inherits` implementation in node.js environment with coffee-script supports\nand browser-friendly.\n\n## isInheritedFrom(ctor, superCtor|superCtorName, raiseError=false)\n\n```js\n  var isInheritedFrom = require('inherits-ex/lib/isInheritedFrom')\n```\n\nreturn the superCtor's son if ctor is inherited from superCtor.\nelse return false.\n\nit will use the ctor.name to check whether inherited from superCtorName.\n\n## mixin(ctor, superCtor|[superCtor, ...])\n\n```js\n  var mixin = require('inherits-ex/lib/mixin')\n```\n\nmixin all superCtors to ctor.\n\n+ duplication mixin or inheritance check\n+ the methods in mixins could super() across mixin classes.\n\n``` coffee\n\nmCallOrder = []\nclass Root\nclass C\n  m: ->\n    mCallOrder.push 'C'\n    super\nclass A\n  m: ->\n    mCallOrder.push 'A'\nclass A1\n  m: ->\n    mCallOrder.push 'A1'\n    super\nclass B\n  inherits B, Root\nclass B1\n  m: ->\n    mCallOrder.push 'B1'\n    super\n\ninherits(C, Root).should.be.equal true, \"C should inherits from Root\"\ninherits(B1, B).should.be.equal true, \"B1 should inherits from B\"\ninherits(A1, A).should.be.equal true, \"A1 should inherits from A\"\nmixin(B1, [A1, C]).should.be.equal true, 'mixin'\no = new B1()\no.m(\"a\", 12) # call chain: B1::m -> C::m -> A1::m -> A::m\nA::m.should.have.been.calledOnce\nA::m.should.have.been.calledWith \"a\", 12\nmCallOrder.should.be.deep.equal ['B1', 'C', 'A1', 'A']\n```\n\nThe inheritance chain: `B1 -> MixinCtor_ -> B -> Root`\nAll mixins will be added to `MixinCtor_`.\n\n## isMixinedFrom(ctor, superCtor|superCtorName)\n\n```js\n  var isMixinedFrom = require('inherits-ex/lib/isMixinedFrom')\n```\n\n## createObject(ctor, args...)\n\nThe helper function to create the object dynamically.\n\n```js\n  var createObject = require('inherits-ex/lib/createObject')\n```\n\n### usage\n\n```coffee\n\nclass RefObject\n  constructor: -> @initialize.apply @, arguments\nclass MyObject\n  inherits MyObject, RefObject\n  initialize: (@a,@b)->\n    super\n\nobj = createObject(MyObject, \"a\", \"b\")\n#obj = new MyObject(\"a\", \"b\") # it will have no property a and b.\nassert.equal obj.a \"a\"\nassert.equal obj.b \"b\"\n\n\n```\n## createObjectWith(ctor, [args...])\n\nThe helper function to create the object dynamically.\n\n```js\n  var createObjectWith = require('inherits-ex/lib/createObjectWith')\n```\n\n## createFunction(name, [args,] body[, scope[, values]])\n\n* arguments:\n  * `name` *(String)*: the function name\n  * `args` *(Array)*: the function argument list. it's optional.\n  * `body` *(String)*: the function body.\n  * ``scope` *(Object|Array)*: the optional function scope.\n    * ignore the `values`  if it's an object.\n    * the `value` is requierd if it's an array. It's the key's name list\n  * `value` *(Array)*: the optional function scope's value list. only for the `scope` is the Array.\n\nThe helper function to create the function dynamically.\n\n```js\n  var createFunction = require('inherits-ex/lib/createFunction')\n```\n\n### usage\n\n```coffee\n\nclass RefObject\n  constructor: -> @initialize.apply @, arguments\nclass MyObject\n  inherits MyObject, RefObject\n  initialize: (@a,@b)->\n    super\n\nobj = createObject(MyObject, \"a\", \"b\")\n#obj = new MyObject(\"a\", \"b\") # it will have no property a and b.\nassert.equal obj.a \"a\"\nassert.equal obj.b \"b\"\n\n\n```\n","repository":{"type":"git","url":"git://github.com/snowyu/inherits-ex.js.git"},"bugs":{"url":"https://github.com/snowyu/inherits-ex.js/issues"},"license":"MIT","versions":{"1.0.0":{"name":"inherits-ex","description":"Browser-friendly enhanced inheritance fully compatible with standard node.js and coffee-script","homepage":"https://github.com/snowyu/inherits-ex.js","version":"1.0.0","author":{"name":"Riceball LEE","email":"snowyu.lee@gmail.com"},"keywords":["inheritance","class","klass","oop","object-oriented","mixin","inherits","browser","coffee","coffeescript","coffee-script","browserify"],"main":"./index.js","repository":{"type":"git","url":"git://github.com/snowyu/inherits-ex.js"},"bugs":{"url":"https://github.com/snowyu/inherits-ex.js/issues"},"license":"MIT","devDependencies":{"chai":"~1.10.0","grunt":"*","grunt-contrib-clean":"*","grunt-contrib-copy":"*","grunt-contrib-jshint":"*","grunt-contrib-uglify":"*","grunt-contrib-watch":"*","grunt-mocha-test":"*","grunt-newer":"*","grunt-release":"*","grunt-saucelabs":"*","mocha":"~2.1.0","pre-commit":"0.0.11","sinon":"~1.12.2","sinon-chai":"~2.6.0","source-map-support":"*"},"pre-commit":["test"],"scripts":{"test":"grunt test"},"gitHead":"da2a6e4f0bd5b64138021e3429a42d8c4fa0c2d7","_id":"inherits-ex@1.0.0","_shasum":"92919b8c428e347de68667699bb2bef6a3bc4113","_from":".","_npmVersion":"1.4.24","_npmUser":{"name":"riceball","email":"snowyu.lee@gmail.com"},"maintainers":[{"name":"riceball","email":"snowyu.lee@gmail.com"}],"dist":{"shasum":"92919b8c428e347de68667699bb2bef6a3bc4113","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/inherits-ex/-/inherits-ex-1.0.0.tgz"},"directories":{}},"1.0.1":{"name":"inherits-ex","description":"Browser-friendly enhanced inheritance fully compatible with standard node.js and coffee-script","homepage":"https://github.com/snowyu/inherits-ex.js","version":"1.0.1","author":{"name":"Riceball LEE","email":"snowyu.lee@gmail.com"},"files":["README.md","LICENSE-MIT","*.js","*.coffee","test","src","lib"],"keywords":["inheritance","class","klass","oop","object-oriented","mixin","inherits","browser","coffee","coffeescript","coffee-script","browserify"],"main":"./index.js","repository":{"type":"git","url":"git://github.com/snowyu/inherits-ex.js"},"bugs":{"url":"https://github.com/snowyu/inherits-ex.js/issues"},"license":"MIT","devDependencies":{"chai":"~1.10.0","grunt":"*","grunt-contrib-clean":"*","grunt-contrib-copy":"*","grunt-contrib-jshint":"*","grunt-contrib-uglify":"*","grunt-contrib-watch":"*","grunt-mocha-test":"*","grunt-newer":"*","grunt-release":"*","grunt-saucelabs":"*","mocha":"~2.1.0","pre-commit":"0.0.11","sinon":"~1.12.2","sinon-chai":"~2.6.0","source-map-support":"*"},"pre-commit":["test"],"scripts":{"test":"grunt test"},"gitHead":"48501aee6e01ecc4a05815e68c354fad2bf919df","_id":"inherits-ex@1.0.1","_shasum":"c08b0e07105cd2c7213ac58b53c691b23b2612f5","_from":".","_npmVersion":"1.4.24","_npmUser":{"name":"riceball","email":"snowyu.lee@gmail.com"},"maintainers":[{"name":"riceball","email":"snowyu.lee@gmail.com"}],"dist":{"shasum":"c08b0e07105cd2c7213ac58b53c691b23b2612f5","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/inherits-ex/-/inherits-ex-1.0.1.tgz"},"directories":{}},"1.0.2":{"name":"inherits-ex","description":"Browser-friendly enhanced inheritance fully compatible with standard node.js and coffee-script","homepage":"https://github.com/snowyu/inherits-ex.js","version":"1.0.2","author":{"name":"Riceball LEE","email":"snowyu.lee@gmail.com"},"files":["README.md","LICENSE-MIT","*.js","*.coffee","test","src","lib"],"keywords":["inheritance","class","klass","oop","object-oriented","mixin","inherits","browser","coffee","coffeescript","coffee-script","browserify"],"main":"./index.js","repository":{"type":"git","url":"git://github.com/snowyu/inherits-ex.js"},"bugs":{"url":"https://github.com/snowyu/inherits-ex.js/issues"},"license":"MIT","devDependencies":{"chai":"~1.10.0","grunt":"*","grunt-contrib-clean":"*","grunt-contrib-copy":"*","grunt-contrib-jshint":"*","grunt-contrib-uglify":"*","grunt-contrib-watch":"*","grunt-mocha-test":"*","grunt-newer":"*","grunt-release":"*","grunt-saucelabs":"*","mocha":"~2.1.0","pre-commit":"0.0.11","sinon":"~1.12.2","sinon-chai":"~2.6.0","source-map-support":"*"},"pre-commit":["test"],"scripts":{"test":"grunt test"},"gitHead":"51e481c61a58537d9533b398da49ec514a3f68ab","_id":"inherits-ex@1.0.2","_shasum":"2798ca1b4895ef20396a63bb2f2378f338be363f","_from":".","_npmVersion":"1.4.24","_npmUser":{"name":"riceball","email":"snowyu.lee@gmail.com"},"maintainers":[{"name":"riceball","email":"snowyu.lee@gmail.com"}],"dist":{"shasum":"2798ca1b4895ef20396a63bb2f2378f338be363f","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/inherits-ex/-/inherits-ex-1.0.2.tgz"},"directories":{}},"1.0.3":{"name":"inherits-ex","description":"Browser-friendly enhanced inheritance fully compatible with standard node.js and coffee-script","homepage":"https://github.com/snowyu/inherits-ex.js","version":"1.0.3","author":{"name":"Riceball LEE","email":"snowyu.lee@gmail.com"},"files":["README.md","LICENSE-MIT","*.js","*.coffee","test","src","lib"],"keywords":["inheritance","class","klass","oop","object-oriented","mixin","inherits","browser","coffee","coffeescript","coffee-script","browserify"],"main":"./index.js","repository":{"type":"git","url":"git://github.com/snowyu/inherits-ex.js"},"bugs":{"url":"https://github.com/snowyu/inherits-ex.js/issues"},"license":"MIT","devDependencies":{"chai":"~1.10.0","grunt":"*","grunt-contrib-clean":"*","grunt-contrib-copy":"*","grunt-contrib-jshint":"*","grunt-contrib-uglify":"*","grunt-contrib-watch":"*","grunt-mocha-test":"*","grunt-newer":"*","grunt-release":"*","grunt-saucelabs":"*","mocha":"~2.1.0","pre-commit":"0.0.11","sinon":"~1.12.2","sinon-chai":"~2.6.0","source-map-support":"*"},"pre-commit":["test"],"scripts":{"test":"grunt test"},"gitHead":"efa4e0b580150e8baa83e615369ce15e1ddbb6da","_id":"inherits-ex@1.0.3","_shasum":"a6c9b5b913a4c888ad37e6df517122de81e36bb2","_from":".","_npmVersion":"1.4.24","_npmUser":{"name":"riceball","email":"snowyu.lee@gmail.com"},"maintainers":[{"name":"riceball","email":"snowyu.lee@gmail.com"}],"dist":{"shasum":"a6c9b5b913a4c888ad37e6df517122de81e36bb2","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/inherits-ex/-/inherits-ex-1.0.3.tgz"},"directories":{}},"1.0.4":{"name":"inherits-ex","description":"Browser-friendly enhanced inheritance fully compatible with standard node.js and coffee-script","homepage":"https://github.com/snowyu/inherits-ex.js","version":"1.0.4","author":{"name":"Riceball LEE","email":"snowyu.lee@gmail.com"},"files":["README.md","LICENSE-MIT","*.js","*.coffee","test","src","lib"],"keywords":["inheritance","class","klass","oop","object-oriented","mixin","inherits","browser","coffee","coffeescript","coffee-script","browserify"],"main":"./index.js","repository":{"type":"git","url":"git://github.com/snowyu/inherits-ex.js"},"bugs":{"url":"https://github.com/snowyu/inherits-ex.js/issues"},"license":"MIT","devDependencies":{"chai":"~1.10.0","grunt":"*","grunt-contrib-clean":"*","grunt-contrib-copy":"*","grunt-contrib-jshint":"*","grunt-contrib-uglify":"*","grunt-contrib-watch":"*","grunt-mocha-test":"*","grunt-newer":"*","grunt-release":"*","grunt-saucelabs":"*","mocha":"~2.1.0","pre-commit":"0.0.11","sinon":"~1.12.2","sinon-chai":"~2.6.0","source-map-support":"*"},"pre-commit":["test"],"scripts":{"test":"grunt test"},"gitHead":"69bfd85fcfd79a60fcb5c46f357fbc68c86977df","_id":"inherits-ex@1.0.4","_shasum":"a658e2bfe530b067aca276aca53adb54c28ae444","_from":".","_npmVersion":"1.4.24","_npmUser":{"name":"riceball","email":"snowyu.lee@gmail.com"},"maintainers":[{"name":"riceball","email":"snowyu.lee@gmail.com"}],"dist":{"shasum":"a658e2bfe530b067aca276aca53adb54c28ae444","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/inherits-ex/-/inherits-ex-1.0.4.tgz"},"directories":{}},"1.0.5":{"name":"inherits-ex","description":"Browser-friendly enhanced inheritance fully compatible with standard node.js and coffee-script","homepage":"https://github.com/snowyu/inherits-ex.js","version":"1.0.5","author":{"name":"Riceball LEE","email":"snowyu.lee@gmail.com"},"files":["README.md","LICENSE-MIT","*.js","*.coffee","test","src","lib"],"keywords":["inheritance","class","klass","oop","object-oriented","mixin","inherits","browser","coffee","coffeescript","coffee-script","browserify"],"main":"./index.js","repository":{"type":"git","url":"git://github.com/snowyu/inherits-ex.js"},"bugs":{"url":"https://github.com/snowyu/inherits-ex.js/issues"},"license":"MIT","devDependencies":{"chai":"~1.10.0","grunt":"*","grunt-contrib-clean":"*","grunt-contrib-copy":"*","grunt-contrib-jshint":"*","grunt-contrib-uglify":"*","grunt-contrib-watch":"*","grunt-mocha-test":"*","grunt-newer":"*","grunt-release":"*","grunt-saucelabs":"*","mocha":"~2.1.0","pre-commit":"0.0.11","sinon":"~1.12.2","sinon-chai":"~2.6.0","source-map-support":"*"},"pre-commit":["test"],"scripts":{"test":"grunt test"},"gitHead":"3b5bedf77a0ed4269da8c726fb9a27775a8ed546","_id":"inherits-ex@1.0.5","_shasum":"ab996bdc157c4ccdea4a50b5e72cd7042e85c9f0","_from":".","_npmVersion":"1.4.24","_npmUser":{"name":"riceball","email":"snowyu.lee@gmail.com"},"maintainers":[{"name":"riceball","email":"snowyu.lee@gmail.com"}],"dist":{"shasum":"ab996bdc157c4ccdea4a50b5e72cd7042e85c9f0","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/inherits-ex/-/inherits-ex-1.0.5.tgz"},"directories":{}},"1.0.6":{"name":"inherits-ex","description":"Browser-friendly enhanced inheritance fully compatible with standard node.js and coffee-script","homepage":"https://github.com/snowyu/inherits-ex.js","version":"1.0.6","author":{"name":"Riceball LEE","email":"snowyu.lee@gmail.com"},"files":["README.md","LICENSE-MIT","*.js","*.coffee","test","src","lib"],"keywords":["inheritance","class","klass","oop","object-oriented","mixin","inherits","browser","coffee","coffeescript","coffee-script","browserify"],"main":"./index.js","repository":{"type":"git","url":"git://github.com/snowyu/inherits-ex.js"},"bugs":{"url":"https://github.com/snowyu/inherits-ex.js/issues"},"license":"MIT","devDependencies":{"chai":"~1.10.0","grunt":"*","grunt-contrib-clean":"*","grunt-contrib-coffee":"*","grunt-contrib-copy":"*","grunt-contrib-jshint":"*","grunt-contrib-uglify":"*","grunt-contrib-watch":"*","grunt-mocha-test":"*","grunt-newer":"*","grunt-release":"*","grunt-saucelabs":"*","mocha":"~2.1.0","pre-commit":"0.0.11","sinon":"~1.12.2","sinon-chai":"~2.6.0","source-map-support":"*"},"pre-commit":["test"],"scripts":{"test":"grunt test"},"dependencies":{"xtend":"^4.0.0"},"gitHead":"aabd37a1b94f3c3962fd2f639c009dd198ef3517","_id":"inherits-ex@1.0.6","_shasum":"ddecaefad62231019f0345617f4d4828e03dbcc6","_from":".","_npmVersion":"2.3.0","_nodeVersion":"0.10.36","_npmUser":{"name":"riceball","email":"snowyu.lee@gmail.com"},"maintainers":[{"name":"riceball","email":"snowyu.lee@gmail.com"}],"dist":{"shasum":"ddecaefad62231019f0345617f4d4828e03dbcc6","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/inherits-ex/-/inherits-ex-1.0.6.tgz"},"directories":{}},"1.0.7":{"name":"inherits-ex","description":"Browser-friendly enhanced inheritance fully compatible with standard node.js and coffee-script","homepage":"https://github.com/snowyu/inherits-ex.js","version":"1.0.7","author":{"name":"Riceball LEE","email":"snowyu.lee@gmail.com"},"files":["README.md","LICENSE-MIT","*.js","*.coffee","test","src","lib"],"keywords":["inheritance","class","klass","oop","object-oriented","mixin","inherits","browser","coffee","coffeescript","coffee-script","browserify"],"main":"./index.js","repository":{"type":"git","url":"git://github.com/snowyu/inherits-ex.js"},"bugs":{"url":"https://github.com/snowyu/inherits-ex.js/issues"},"license":"MIT","devDependencies":{"chai":"~1.10.0","grunt":"*","grunt-contrib-clean":"*","grunt-contrib-coffee":"*","grunt-contrib-copy":"*","grunt-contrib-jshint":"*","grunt-contrib-uglify":"*","grunt-contrib-watch":"*","grunt-mocha-test":"*","grunt-newer":"*","grunt-release":"*","grunt-saucelabs":"*","mocha":"~2.1.0","pre-commit":"0.0.11","sinon":"~1.12.2","sinon-chai":"~2.6.0","source-map-support":"*"},"pre-commit":["test"],"scripts":{"test":"grunt test"},"dependencies":{"xtend":"^4.0.0"},"gitHead":"db935060046d706f2ace5f898496eb5805efcc73","_id":"inherits-ex@1.0.7","_shasum":"4b3376da07deaf834d47b96f8aa03a3c820e36a7","_from":".","_npmVersion":"2.3.0","_nodeVersion":"0.10.36","_npmUser":{"name":"riceball","email":"snowyu.lee@gmail.com"},"maintainers":[{"name":"riceball","email":"snowyu.lee@gmail.com"}],"dist":{"shasum":"4b3376da07deaf834d47b96f8aa03a3c820e36a7","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/inherits-ex/-/inherits-ex-1.0.7.tgz"},"directories":{}},"1.0.8":{"name":"inherits-ex","description":"Browser-friendly enhanced inheritance fully compatible with standard node.js and coffee-script","homepage":"https://github.com/snowyu/inherits-ex.js","version":"1.0.8","author":{"name":"Riceball LEE","email":"snowyu.lee@gmail.com"},"files":["README.md","LICENSE-MIT","*.js","*.coffee","test","src","lib"],"keywords":["inheritance","class","klass","oop","object-oriented","mixin","inherits","browser","coffee","coffeescript","coffee-script","browserify"],"main":"./index.js","repository":{"type":"git","url":"git://github.com/snowyu/inherits-ex.js"},"bugs":{"url":"https://github.com/snowyu/inherits-ex.js/issues"},"license":"MIT","devDependencies":{"chai":"~1.10.0","grunt":"*","grunt-contrib-clean":"*","grunt-contrib-coffee":"*","grunt-contrib-copy":"*","grunt-contrib-jshint":"*","grunt-contrib-uglify":"*","grunt-contrib-watch":"*","grunt-mocha-test":"*","grunt-newer":"*","grunt-release":"*","grunt-saucelabs":"*","mocha":"~2.1.0","pre-commit":"0.0.11","sinon":"~1.12.2","sinon-chai":"~2.6.0","source-map-support":"*"},"pre-commit":["test"],"scripts":{"test":"grunt test"},"dependencies":{"xtend":"^4.0.0"},"gitHead":"5fad761aafd2fe5e5443c58261bedb7de46a15d4","_id":"inherits-ex@1.0.8","_shasum":"3b5aa6148bb4e8df37e592e029ad13b9bc9d03c2","_from":".","_npmVersion":"2.3.0","_nodeVersion":"0.10.36","_npmUser":{"name":"riceball","email":"snowyu.lee@gmail.com"},"maintainers":[{"name":"riceball","email":"snowyu.lee@gmail.com"}],"dist":{"shasum":"3b5aa6148bb4e8df37e592e029ad13b9bc9d03c2","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/inherits-ex/-/inherits-ex-1.0.8.tgz"},"directories":{}},"1.0.9":{"name":"inherits-ex","description":"Browser-friendly enhanced inheritance fully compatible with standard node.js and coffee-script","homepage":"https://github.com/snowyu/inherits-ex.js","version":"1.0.9","author":{"name":"Riceball LEE","email":"snowyu.lee@gmail.com"},"files":["README.md","LICENSE-MIT","*.js","*.coffee","test","src","lib"],"keywords":["inheritance","class","klass","oop","object-oriented","mixin","inherits","browser","coffee","coffeescript","coffee-script","browserify"],"main":"./index.js","repository":{"type":"git","url":"git://github.com/snowyu/inherits-ex.js.git"},"bugs":{"url":"https://github.com/snowyu/inherits-ex.js/issues"},"license":"MIT","devDependencies":{"chai":"~1.10.0","grunt":"*","grunt-contrib-clean":"*","grunt-contrib-coffee":"*","grunt-contrib-copy":"*","grunt-contrib-jshint":"*","grunt-contrib-uglify":"*","grunt-contrib-watch":"*","grunt-mocha-test":"*","grunt-newer":"*","grunt-release":"*","grunt-saucelabs":"*","mocha":"~2.1.0","pre-commit":"0.0.11","sinon":"~1.12.2","sinon-chai":"~2.6.0","source-map-support":"*"},"pre-commit":["test"],"scripts":{"test":"grunt test"},"dependencies":{"xtend":"^4.0.0"},"gitHead":"0b6a17fc5d44b9d84211b8df202bcd47a231168a","_id":"inherits-ex@1.0.9","_shasum":"5c9ff02326f45f2c3ebbde27462dee011d9fedd9","_from":".","_npmVersion":"2.13.1","_nodeVersion":"0.10.36","_npmUser":{"name":"riceball","email":"snowyu.lee@gmail.com"},"dist":{"shasum":"5c9ff02326f45f2c3ebbde27462dee011d9fedd9","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/inherits-ex/-/inherits-ex-1.0.9.tgz"},"maintainers":[{"name":"riceball","email":"snowyu.lee@gmail.com"}],"directories":{}},"1.1.0":{"name":"inherits-ex","description":"Browser-friendly enhanced inheritance fully compatible with standard node.js and coffee-script","homepage":"https://github.com/snowyu/inherits-ex.js","version":"1.1.0","author":{"name":"Riceball LEE","email":"snowyu.lee@gmail.com"},"files":["README.md","LICENSE-MIT","*.js","*.coffee","test","src","lib"],"keywords":["inheritance","class","klass","oop","object-oriented","mixin","inherits","browser","coffee","coffeescript","coffee-script","browserify"],"main":"./index.js","repository":{"type":"git","url":"git://github.com/snowyu/inherits-ex.js.git"},"bugs":{"url":"https://github.com/snowyu/inherits-ex.js/issues"},"license":"MIT","devDependencies":{"chai":"~1.10.0","grunt":"*","grunt-contrib-clean":"*","grunt-contrib-coffee":"*","grunt-contrib-copy":"*","grunt-contrib-jshint":"*","grunt-contrib-uglify":"*","grunt-contrib-watch":"*","grunt-mocha-test":"*","grunt-newer":"*","grunt-release":"*","grunt-saucelabs":"*","mocha":"~2.1.0","pre-commit":"0.0.11","sinon":"~1.12.2","sinon-chai":"~2.6.0","source-map-support":"*"},"pre-commit":["test"],"scripts":{"test":"grunt test"},"dependencies":{"xtend":"^4.0.0"},"gitHead":"17b996dfcf7acab6f8f74f26c4d485a703650f92","_id":"inherits-ex@1.1.0","_shasum":"04b5982cdc8376c5675eee28e7bbf7d3c17ecc82","_from":".","_npmVersion":"2.13.1","_nodeVersion":"0.10.36","_npmUser":{"name":"riceball","email":"snowyu.lee@gmail.com"},"dist":{"shasum":"04b5982cdc8376c5675eee28e7bbf7d3c17ecc82","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/inherits-ex/-/inherits-ex-1.1.0.tgz"},"maintainers":[{"name":"riceball","email":"snowyu.lee@gmail.com"}],"directories":{}},"1.1.1":{"name":"inherits-ex","description":"Browser-friendly enhanced inheritance fully compatible with standard node.js and coffee-script","homepage":"https://github.com/snowyu/inherits-ex.js","version":"1.1.1","author":{"name":"Riceball LEE","email":"snowyu.lee@gmail.com"},"files":["README.md","LICENSE-MIT","*.js","*.coffee","test","src","lib"],"keywords":["inheritance","class","klass","oop","object-oriented","mixin","inherits","browser","coffee","coffeescript","coffee-script","browserify"],"main":"./index.js","repository":{"type":"git","url":"git://github.com/snowyu/inherits-ex.js"},"bugs":{"url":"https://github.com/snowyu/inherits-ex.js/issues"},"license":"MIT","devDependencies":{"chai":"~1.10.0","grunt":"*","grunt-contrib-clean":"*","grunt-contrib-coffee":"*","grunt-contrib-copy":"*","grunt-contrib-jshint":"*","grunt-contrib-uglify":"*","grunt-contrib-watch":"*","grunt-mocha-test":"*","grunt-newer":"*","grunt-release":"*","grunt-saucelabs":"*","mocha":"~2.1.0","pre-commit":"0.0.11","sinon":"~1.12.2","sinon-chai":"~2.6.0","source-map-support":"*"},"pre-commit":["test"],"scripts":{"test":"grunt test"},"dependencies":{"xtend":"^4.0.0"},"gitHead":"79b1e20aff3d7056e7d61a424694605493812aa5","_id":"inherits-ex@1.1.1","_shasum":"f1104e2bdd48e5715adfda9e2766b0d7df712f09","_from":".","_npmVersion":"2.5.1","_nodeVersion":"0.12.0","_npmUser":{"name":"riceball","email":"snowyu.lee@gmail.com"},"dist":{"shasum":"f1104e2bdd48e5715adfda9e2766b0d7df712f09","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/inherits-ex/-/inherits-ex-1.1.1.tgz"},"maintainers":[{"name":"riceball","email":"snowyu.lee@gmail.com"}],"directories":{}},"1.1.2":{"name":"inherits-ex","description":"Browser-friendly enhanced inheritance fully compatible with standard node.js and coffee-script","homepage":"https://github.com/snowyu/inherits-ex.js","version":"1.1.2","author":{"name":"Riceball LEE","email":"snowyu.lee@gmail.com"},"files":["README.md","LICENSE-MIT","*.js","*.coffee","test","src","lib"],"keywords":["inheritance","class","klass","oop","object-oriented","mixin","inherits","browser","coffee","coffeescript","coffee-script","browserify"],"main":"./index.js","repository":{"type":"git","url":"git://github.com/snowyu/inherits-ex.js.git"},"bugs":{"url":"https://github.com/snowyu/inherits-ex.js/issues"},"license":"MIT","devDependencies":{"chai":"~1.10.0","grunt":"*","grunt-contrib-clean":"*","grunt-contrib-coffee":"*","grunt-contrib-copy":"*","grunt-contrib-jshint":"*","grunt-contrib-uglify":"*","grunt-contrib-watch":"*","grunt-mocha-test":"*","grunt-newer":"*","grunt-release":"*","grunt-saucelabs":"*","mocha":"~2.1.0","pre-commit":"0.0.11","sinon":"~1.12.2","sinon-chai":"~2.6.0","source-map-support":"*"},"pre-commit":["test"],"scripts":{"test":"grunt test"},"dependencies":{"xtend":"^4.0.0"},"gitHead":"c9d314b09d5c207abb96e65aceafad7f2b9e4fd2","_id":"inherits-ex@1.1.2","_shasum":"9f675e6b94d7c0d6df1cb38640143f694cfc97ab","_from":".","_npmVersion":"2.13.1","_nodeVersion":"0.10.36","_npmUser":{"name":"riceball","email":"snowyu.lee@gmail.com"},"dist":{"shasum":"9f675e6b94d7c0d6df1cb38640143f694cfc97ab","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/inherits-ex/-/inherits-ex-1.1.2.tgz"},"maintainers":[{"name":"riceball","email":"snowyu.lee@gmail.com"}],"directories":{}},"1.1.3":{"name":"inherits-ex","description":"Browser-friendly enhanced inheritance fully compatible with standard node.js and coffee-script","homepage":"https://github.com/snowyu/inherits-ex.js","version":"1.1.3","author":{"name":"Riceball LEE","email":"snowyu.lee@gmail.com"},"files":["README.md","LICENSE-MIT","*.js","*.coffee","test","src","lib"],"keywords":["inheritance","class","klass","oop","object-oriented","mixin","inherits","browser","coffee","coffeescript","coffee-script","browserify"],"main":"./index.js","repository":{"type":"git","url":"git://github.com/snowyu/inherits-ex.js.git"},"bugs":{"url":"https://github.com/snowyu/inherits-ex.js/issues"},"license":"MIT","devDependencies":{"chai":"~1.10.0","coffee-coverage":"^0.6.2","grunt":"*","grunt-contrib-clean":"*","grunt-contrib-coffee":"*","grunt-contrib-copy":"*","grunt-contrib-jshint":"*","grunt-contrib-uglify":"*","grunt-contrib-watch":"*","grunt-mocha-test":"*","grunt-newer":"*","grunt-release":"*","grunt-saucelabs":"*","istanbul":"^0.3.17","mocha":"~2.1.0","pre-commit":"0.0.11","sinon":"~1.12.2","sinon-chai":"~2.6.0","source-map-support":"*"},"pre-commit":["test"],"scripts":{"test":"grunt test","test-cov":"istanbul cover node_modules/.bin/_mocha --report lcovonly -- --reporter dot"},"dependencies":{"xtend":"^4.0.0"},"gitHead":"2f414b6b7f73b63f0197e42637c6a6e455da9b89","_id":"inherits-ex@1.1.3","_shasum":"f04fd3794a78cdd6b374895502920101f44f64df","_from":".","_npmVersion":"2.13.1","_nodeVersion":"0.10.36","_npmUser":{"name":"riceball","email":"snowyu.lee@gmail.com"},"dist":{"shasum":"f04fd3794a78cdd6b374895502920101f44f64df","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/inherits-ex/-/inherits-ex-1.1.3.tgz"},"maintainers":[{"name":"riceball","email":"snowyu.lee@gmail.com"}],"directories":{}},"1.1.4":{"name":"inherits-ex","description":"Browser-friendly enhanced inheritance fully compatible with standard node.js and coffee-script","homepage":"https://github.com/snowyu/inherits-ex.js","version":"1.1.4","author":{"name":"Riceball LEE","email":"snowyu.lee@gmail.com"},"files":["README.md","LICENSE-MIT","*.js","*.coffee","test","src","lib"],"keywords":["inheritance","class","klass","oop","object-oriented","mixin","inherits","browser","coffee","coffeescript","coffee-script","browserify"],"main":"./index.js","repository":{"type":"git","url":"git://github.com/snowyu/inherits-ex.js.git"},"bugs":{"url":"https://github.com/snowyu/inherits-ex.js/issues"},"license":"MIT","devDependencies":{"chai":"~1.10.0","coffee-coverage":"^0.6.2","grunt":"*","grunt-contrib-clean":"*","grunt-contrib-coffee":"*","grunt-contrib-copy":"*","grunt-contrib-jshint":"*","grunt-contrib-uglify":"*","grunt-contrib-watch":"*","grunt-mocha-test":"*","grunt-newer":"*","grunt-release":"*","grunt-saucelabs":"*","istanbul":"^0.3.17","mocha":"~2.1.0","pre-commit":"0.0.11","sinon":"~1.12.2","sinon-chai":"~2.6.0","source-map-support":"*"},"pre-commit":["test"],"scripts":{"test":"grunt test","test-cov":"istanbul cover node_modules/.bin/_mocha --report lcovonly -- --reporter dot"},"dependencies":{"xtend":"^4.0.0"},"gitHead":"4d932ee1c95ea5899963d09d12c6c343146e4bd3","_id":"inherits-ex@1.1.4","_shasum":"33aed70cffa125994e716bdeb2340d215d50d4f6","_from":".","_npmVersion":"2.13.1","_nodeVersion":"0.10.36","_npmUser":{"name":"riceball","email":"snowyu.lee@gmail.com"},"dist":{"shasum":"33aed70cffa125994e716bdeb2340d215d50d4f6","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/inherits-ex/-/inherits-ex-1.1.4.tgz"},"maintainers":[{"name":"riceball","email":"snowyu.lee@gmail.com"}],"directories":{}},"1.1.5":{"name":"inherits-ex","description":"Browser-friendly enhanced inheritance fully compatible with standard node.js and coffee-script","homepage":"https://github.com/snowyu/inherits-ex.js","version":"1.1.5","author":{"name":"Riceball LEE","email":"snowyu.lee@gmail.com"},"files":["README.md","LICENSE-MIT","*.js","*.coffee","test","src","lib"],"keywords":["inheritance","class","klass","oop","object-oriented","mixin","inherits","browser","coffee","coffeescript","coffee-script","browserify"],"main":"./index.js","repository":{"type":"git","url":"git://github.com/snowyu/inherits-ex.js.git"},"bugs":{"url":"https://github.com/snowyu/inherits-ex.js/issues"},"license":"MIT","devDependencies":{"chai":"~1.10.0","coffee-coverage":"^0.6.2","grunt":"*","grunt-contrib-clean":"*","grunt-contrib-coffee":"*","grunt-contrib-copy":"*","grunt-contrib-jshint":"*","grunt-contrib-uglify":"*","grunt-contrib-watch":"*","grunt-mocha-test":"*","grunt-newer":"*","grunt-release":"*","grunt-saucelabs":"*","istanbul":"^0.3.17","mocha":"~2.1.0","pre-commit":"0.0.11","sinon":"~1.12.2","sinon-chai":"~2.6.0","source-map-support":"*"},"pre-commit":["test"],"scripts":{"test":"grunt test","test-cov":"istanbul cover node_modules/.bin/_mocha --report lcovonly -- --reporter dot"},"dependencies":{"xtend":"^4.0.0"},"gitHead":"e3e3600fc2c43f8fbc0da09881ef6b45ccc64420","_id":"inherits-ex@1.1.5","_shasum":"a5ea18305cb1afa1c3feddc0395f6e3a445af57c","_from":".","_npmVersion":"3.7.3","_nodeVersion":"5.9.0","_npmUser":{"name":"riceball","email":"snowyu.lee@gmail.com"},"dist":{"shasum":"a5ea18305cb1afa1c3feddc0395f6e3a445af57c","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/inherits-ex/-/inherits-ex-1.1.5.tgz"},"maintainers":[{"name":"riceball","email":"snowyu.lee@gmail.com"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/inherits-ex-1.1.5.tgz_1472546103976_0.07510970532894135"},"directories":{}},"1.1.6":{"name":"inherits-ex","description":"Browser-friendly enhanced inheritance fully compatible with standard node.js and coffee-script","homepage":"https://github.com/snowyu/inherits-ex.js","version":"1.1.6","author":{"name":"Riceball LEE","email":"snowyu.lee@gmail.com"},"files":["README.md","LICENSE-MIT","*.js","*.coffee","test","src","lib"],"keywords":["inheritance","class","klass","oop","object-oriented","mixin","inherits","browser","coffee","coffeescript","coffee-script","browserify"],"main":"./index.js","repository":{"type":"git","url":"git://github.com/snowyu/inherits-ex.js.git"},"bugs":{"url":"https://github.com/snowyu/inherits-ex.js/issues"},"license":"MIT","devDependencies":{"chai":"~1.10.0","coffee-coverage":"^0.6.2","grunt":"*","grunt-contrib-clean":"*","grunt-contrib-coffee":"*","grunt-contrib-copy":"*","grunt-contrib-jshint":"*","grunt-contrib-uglify":"*","grunt-contrib-watch":"*","grunt-mocha-test":"*","grunt-newer":"*","grunt-release":"*","grunt-saucelabs":"*","istanbul":"^0.3.17","mocha":"~2.1.0","pre-commit":"1.1.3","sinon":"~1.12.2","sinon-chai":"~2.6.0","source-map-support":"*"},"pre-commit":["test"],"scripts":{"test":"grunt test","test-cov":"istanbul cover node_modules/.bin/_mocha --report lcovonly -- --reporter dot"},"dependencies":{"xtend":"^4.0.0"},"gitHead":"7f117858cf63c5993a1fbe6be37243828736ad7e","_id":"inherits-ex@1.1.6","_shasum":"21b7bd8b26a189fa0cfbb4f88b2049b07b6b050f","_from":".","_npmVersion":"3.7.3","_nodeVersion":"5.9.0","_npmUser":{"name":"riceball","email":"snowyu.lee@gmail.com"},"dist":{"shasum":"21b7bd8b26a189fa0cfbb4f88b2049b07b6b050f","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/inherits-ex/-/inherits-ex-1.1.6.tgz"},"maintainers":[{"name":"riceball","email":"snowyu.lee@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/inherits-ex-1.1.6.tgz_1474519258660_0.8336781191173941"},"directories":{}},"1.1.7":{"name":"inherits-ex","description":"Browser-friendly enhanced inheritance fully compatible with standard node.js and coffee-script","homepage":"https://github.com/snowyu/inherits-ex.js","version":"1.1.7","author":{"name":"Riceball LEE","email":"snowyu.lee@gmail.com"},"files":["README.md","LICENSE-MIT","*.js","*.coffee","test","src","lib"],"keywords":["inheritance","class","klass","oop","object-oriented","mixin","inherits","browser","coffee","coffeescript","coffee-script","browserify"],"main":"./index.js","repository":{"type":"git","url":"git://github.com/snowyu/inherits-ex.js.git"},"bugs":{"url":"https://github.com/snowyu/inherits-ex.js/issues"},"license":"MIT","devDependencies":{"chai":"~1.10.0","coffee-coverage":"^0.6.2","grunt":"*","grunt-contrib-clean":"*","grunt-contrib-coffee":"*","grunt-contrib-copy":"*","grunt-contrib-jshint":"*","grunt-contrib-uglify":"*","grunt-contrib-watch":"*","grunt-mocha-test":"*","grunt-newer":"*","grunt-release":"*","grunt-saucelabs":"*","istanbul":"^0.3.17","mocha":"~2.1.0","pre-commit":"1.1.3","sinon":"~1.12.2","sinon-chai":"~2.6.0","source-map-support":"*"},"pre-commit":["test"],"scripts":{"test":"grunt test","test-cov":"istanbul cover node_modules/.bin/_mocha --report lcovonly -- --reporter dot"},"dependencies":{"xtend":"^4.0.0"},"gitHead":"3c8b13bac1e1a9724c273661399297071786f428","_id":"inherits-ex@1.1.7","_shasum":"20ebf70feb5a80b24c549435cf13e17bcd486f04","_from":".","_npmVersion":"4.1.2","_nodeVersion":"7.7.4","_npmUser":{"name":"riceball","email":"snowyu.lee@gmail.com"},"dist":{"shasum":"20ebf70feb5a80b24c549435cf13e17bcd486f04","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/inherits-ex/-/inherits-ex-1.1.7.tgz"},"maintainers":[{"name":"riceball","email":"snowyu.lee@gmail.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/inherits-ex-1.1.7.tgz_1490844130257_0.5207592959050089"},"directories":{}},"1.1.8":{"name":"inherits-ex","description":"Browser-friendly enhanced inheritance fully compatible with standard node.js and coffee-script","homepage":"https://github.com/snowyu/inherits-ex.js","version":"1.1.8","author":{"name":"Riceball LEE","email":"snowyu.lee@gmail.com"},"files":["README.md","LICENSE-MIT","*.js","*.coffee","test","src","lib"],"keywords":["inheritance","class","klass","oop","object-oriented","mixin","inherits","browser","coffee","coffeescript","coffee-script","browserify"],"main":"./index.js","repository":{"type":"git","url":"git://github.com/snowyu/inherits-ex.js.git"},"bugs":{"url":"https://github.com/snowyu/inherits-ex.js/issues"},"license":"MIT","devDependencies":{"chai":"~1.10.0","coffee-coverage":"^0.6.2","grunt":"*","grunt-contrib-clean":"*","grunt-contrib-coffee":"*","grunt-contrib-copy":"*","grunt-contrib-jshint":"*","grunt-contrib-uglify":"*","grunt-contrib-watch":"*","grunt-mocha-test":"*","grunt-newer":"*","grunt-release":"*","grunt-saucelabs":"*","istanbul":"^0.3.17","mocha":"~2.1.0","pre-commit":"1.1.3","sinon":"~1.12.2","sinon-chai":"~2.6.0","source-map-support":"*"},"pre-commit":["test"],"scripts":{"test":"grunt test","test-cov":"istanbul cover node_modules/.bin/_mocha --report lcovonly -- --reporter dot"},"dependencies":{"xtend":"^4.0.0"},"browser":{"./lib/isEmptyFunction.js":"./lib/isEmptyFunction-cli.js"},"gitHead":"1a3dafed4c2842bd37bb49d08370154993f7e2fa","_id":"inherits-ex@1.1.8","_shasum":"f709a9a59c58a93ddfe01d3530e67247bae29be3","_from":".","_npmVersion":"3.10.10","_nodeVersion":"6.10.0","_npmUser":{"name":"riceball","email":"snowyu.lee@gmail.com"},"dist":{"shasum":"f709a9a59c58a93ddfe01d3530e67247bae29be3","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/inherits-ex/-/inherits-ex-1.1.8.tgz"},"maintainers":[{"name":"riceball","email":"snowyu.lee@gmail.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/inherits-ex-1.1.8.tgz_1491459686418_0.9317397275008261"},"directories":{}}},"name":"inherits-ex","time":{"modified":"2017-04-06T06:21:28.216Z","created":"2015-01-28T09:33:58.162Z","1.0.0":"2015-01-28T09:33:58.162Z","1.0.1":"2015-01-28T14:37:47.733Z","1.0.2":"2015-01-28T22:55:08.698Z","1.0.3":"2015-02-02T07:04:55.279Z","1.0.4":"2015-02-03T08:41:10.946Z","1.0.5":"2015-02-04T10:57:03.955Z","1.0.6":"2015-02-11T04:04:51.371Z","1.0.7":"2015-07-10T23:16:01.398Z","1.0.8":"2015-07-15T05:28:00.914Z","1.0.9":"2015-07-22T02:44:05.784Z","1.1.0":"2015-07-23T13:03:38.985Z","1.1.1":"2015-07-23T14:13:48.818Z","1.1.2":"2015-07-26T10:18:59.651Z","1.1.3":"2015-07-27T05:49:47.418Z","1.1.4":"2015-08-22T09:55:21.782Z","1.1.5":"2016-08-30T08:35:06.738Z","1.1.6":"2016-09-22T04:40:58.890Z","1.1.7":"2017-03-30T03:22:12.371Z","1.1.8":"2017-04-06T06:21:28.216Z"},"readmeFilename":"README.md","homepage":"https://github.com/snowyu/inherits-ex.js"}