pax_global_header00006660000000000000000000000064127062652310014516gustar00rootroot0000000000000052 comment=31b15661860115cd9c9f05ea42bb80e9f6ece172 object-assign-sorted-1.0.0/000077500000000000000000000000001270626523100155425ustar00rootroot00000000000000object-assign-sorted-1.0.0/.gitignore000066400000000000000000000000231270626523100175250ustar00rootroot00000000000000node_modules *.log object-assign-sorted-1.0.0/LICENSE000066400000000000000000000021011270626523100165410ustar00rootroot00000000000000COPYRIGHT (c) 2016 James Kyle MIT License Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. object-assign-sorted-1.0.0/README.md000066400000000000000000000003171270626523100170220ustar00rootroot00000000000000# object-assign-sorted `Object.assign` with sorted keys. ```js var objectAssignSorted = require('object-assign-sorted'); objectAssignSorted({ b: 1, a: 1 }, { c: 2, b: 2 }); // >> { a: 1, b: 2, c: 2 } ``` object-assign-sorted-1.0.0/index.js000066400000000000000000000003131270626523100172040ustar00rootroot00000000000000var objectAssign = require('object-assign'); var sortedObject = require('sorted-object'); module.exports = function objectAssignSorted() { return sortedObject(objectAssign.apply(null, arguments)); }; object-assign-sorted-1.0.0/package.json000066400000000000000000000012571270626523100200350ustar00rootroot00000000000000{ "name": "object-assign-sorted", "version": "1.0.0", "description": "Object.assign with sorted keys", "main": "index.js", "scripts": { "test": "echo \"Error: no test specified\" && exit 1" }, "repository": { "type": "git", "url": "https://github.com/thejameskyle/object-assign-sorted" }, "keywords": [ "object.assign", "sorted" ], "author": "James Kyle ", "license": "MIT", "bugs": { "url": "https://github.com/thejameskyle/object-assign-sorted/issues" }, "homepage": "https://github.com/thejameskyle/object-assign-sorted", "dependencies": { "object-assign": "^4.0.1", "sorted-object": "^2.0.0" } }