Skip to content

Commit

Permalink
3.2.1
Browse files Browse the repository at this point in the history
  • Loading branch information
searls committed Jun 26, 2017
1 parent 737df04 commit b39ae93
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 6 deletions.
12 changes: 8 additions & 4 deletions dist/testdouble.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* testdouble@3.2.0
* testdouble@3.2.1
*
* A minimal test double library for TDD with JavaScript
*
Expand Down Expand Up @@ -10085,13 +10085,17 @@ var _lodash = require('../../wrap/lodash');

var _lodash2 = _interopRequireDefault(_lodash);

var _isPrimitiveLike = require('./is-primitive-like');

var _isPrimitiveLike2 = _interopRequireDefault(_isPrimitiveLike);

function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }

exports.default = function (thing) {
var originalThing = thing;
var props = {};

while (!isNativePrototype(thing)) {
while (!(0, _isPrimitiveLike2.default)(thing) && !isNativePrototype(thing)) {
Object.getOwnPropertyNames(thing).forEach(function (propName) {
if (!props[propName] && propName !== 'constructor') {
props[propName] = Object.getOwnPropertyDescriptor(thing, propName);
Expand All @@ -10118,7 +10122,7 @@ var removeAbsentProperties = function removeAbsentProperties(props, originalThin
});
};

},{"../../wrap/lodash":336}],310:[function(require,module,exports){
},{"../../wrap/lodash":336,"./is-primitive-like":311}],310:[function(require,module,exports){
'use strict';

Object.defineProperty(exports, "__esModule", {
Expand Down Expand Up @@ -11287,7 +11291,7 @@ var ignoreMessage = function ignoreMessage(config) {
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.default = '3.2.0';
exports.default = '3.2.1';

},{}],335:[function(require,module,exports){
'use strict';
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "testdouble",
"version": "3.2.0",
"version": "3.2.1",
"description": "A minimal test double library for TDD with JavaScript",
"homepage": "https://github.com/testdouble/testdouble.js",
"author": {
Expand Down
2 changes: 1 addition & 1 deletion src/version.js
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export default '3.2.0'
export default '3.2.1'

0 comments on commit b39ae93

Please sign in to comment.