uawdijnntqw1x1x1
IP : 216.73.216.110
Hostname : 6.87.74.97.host.secureserver.net
Kernel : Linux 6.87.74.97.host.secureserver.net 4.18.0-553.83.1.el8_10.x86_64 #1 SMP Mon Nov 10 04:22:44 EST 2025 x86_64
Disable Function : None :)
OS : Linux
PATH:
/
home
/
emeraadmin
/
www
/
node_modules
/
raf
/
..
/
debug
/
..
/
debug
/
..
/
array-slice
/
..
/
..
/
4d695
/
object.pick.zip
/
/
PK4`�\b��FFpackage.jsonnu�[���{ "_from": "object.pick@^1.2.0", "_id": "object.pick@1.3.0", "_inBundle": false, "_integrity": "sha512-tqa/UMy/CCoYmj+H5qc07qvSL9dqcs/WZENZ1JbtWBlATP+iVOe778gE6MSijnyCnORzDuX6hU+LA4SZ09YjFQ==", "_location": "/object.pick", "_phantomChildren": {}, "_requested": { "type": "range", "registry": true, "raw": "object.pick@^1.2.0", "name": "object.pick", "escapedName": "object.pick", "rawSpec": "^1.2.0", "saveSpec": null, "fetchSpec": "^1.2.0" }, "_requiredBy": [ "/fined" ], "_resolved": "https://registry.npmjs.org/object.pick/-/object.pick-1.3.0.tgz", "_shasum": "87a10ac4c1694bd2e1cbf53591a66141fb5dd747", "_spec": "object.pick@^1.2.0", "_where": "C:\\xampp\\htdocs\\emeraltd\\node_modules\\fined", "author": { "name": "Jon Schlinkert", "url": "https://github.com/jonschlinkert" }, "bugs": { "url": "https://github.com/jonschlinkert/object.pick/issues" }, "bundleDependencies": false, "dependencies": { "isobject": "^3.0.1" }, "deprecated": false, "description": "Returns a filtered copy of an object with only the specified keys, similar to `_.pick` from lodash / underscore.", "devDependencies": { "gulp-format-md": "^1.0.0", "mocha": "^3.1.2", "vinyl": "^2.0.0" }, "engines": { "node": ">=0.10.0" }, "files": [ "index.js" ], "homepage": "https://github.com/jonschlinkert/object.pick", "keywords": [ "object", "pick" ], "license": "MIT", "main": "index.js", "name": "object.pick", "repository": { "type": "git", "url": "git+https://github.com/jonschlinkert/object.pick.git" }, "scripts": { "test": "mocha" }, "verb": { "run": true, "toc": false, "layout": "default", "tasks": [ "readme" ], "plugins": [ "gulp-format-md" ], "related": { "list": [ "extend-shallow", "get-value", "mixin-deep", "set-value" ], "highlight": "object.omit" }, "reflinks": [ "verb" ], "lint": { "reflinks": true } }, "version": "1.3.0" } PK4`�\�wo�@@LICENSEnu�[���The MIT License (MIT) Copyright (c) 2014-2016, Jon Schlinkert. 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. PK4`�\�m vvindex.jsnu�[���/*! * object.pick <https://github.com/jonschlinkert/object.pick> * * Copyright (c) 2014-2015 Jon Schlinkert, contributors. * Licensed under the MIT License */ 'use strict'; var isObject = require('isobject'); module.exports = function pick(obj, keys) { if (!isObject(obj) && typeof obj !== 'function') { return {}; } var res = {}; if (typeof keys === 'string') { if (keys in obj) { res[keys] = obj[keys]; } return res; } var len = keys.length; var idx = -1; while (++idx < len) { var key = keys[idx]; if (key in obj) { res[key] = obj[key]; } } return res; }; PK4`�\��%k k README.mdnu�[���# object.pick [](https://www.npmjs.com/package/object.pick) [](https://npmjs.org/package/object.pick) [](https://npmjs.org/package/object.pick) [](https://travis-ci.org/jonschlinkert/object.pick) > Returns a filtered copy of an object with only the specified keys, similar to `_.pick` from lodash / underscore. You might also be interested in [object.omit](https://github.com/jonschlinkert/object.omit). ## Install Install with [npm](https://www.npmjs.com/): ```sh $ npm install --save object.pick ``` ## benchmarks This is the [fastest implementation](http://jsperf.com/pick-props) I tested. Pull requests welcome! ## Usage ```js var pick = require('object.pick'); pick({a: 'a', b: 'b'}, 'a') //=> {a: 'a'} pick({a: 'a', b: 'b', c: 'c'}, ['a', 'b']) //=> {a: 'a', b: 'b'} ``` ## About ### Related projects * [extend-shallow](https://www.npmjs.com/package/extend-shallow): Extend an object with the properties of additional objects. node.js/javascript util. | [homepage](https://github.com/jonschlinkert/extend-shallow "Extend an object with the properties of additional objects. node.js/javascript util.") * [get-value](https://www.npmjs.com/package/get-value): Use property paths (`a.b.c`) to get a nested value from an object. | [homepage](https://github.com/jonschlinkert/get-value "Use property paths (`a.b.c`) to get a nested value from an object.") * [mixin-deep](https://www.npmjs.com/package/mixin-deep): Deeply mix the properties of objects into the first object. Like merge-deep, but doesn't clone. | [homepage](https://github.com/jonschlinkert/mixin-deep "Deeply mix the properties of objects into the first object. Like merge-deep, but doesn't clone.") * [set-value](https://www.npmjs.com/package/set-value): Create nested values and any intermediaries using dot notation (`'a.b.c'`) paths. | [homepage](https://github.com/jonschlinkert/set-value "Create nested values and any intermediaries using dot notation (`'a.b.c'`) paths.") ### Contributing Pull requests and stars are always welcome. For bugs and feature requests, [please create an issue](../../issues/new). ### Building docs _(This document was generated by [verb-generate-readme](https://github.com/verbose/verb-generate-readme) (a [verb](https://github.com/verbose/verb) generator), please don't edit the readme directly. Any changes to the readme must be made in [.verb.md](.verb.md).)_ To generate the readme and API documentation with [verb](https://github.com/verbose/verb): ```sh $ npm install -g verb verb-generate-readme && verb ``` ### Running tests Install dev dependencies: ```sh $ npm install -d && npm test ``` ### Author **Jon Schlinkert** * [github/jonschlinkert](https://github.com/jonschlinkert) * [twitter/jonschlinkert](http://twitter.com/jonschlinkert) ### License Copyright © 2016, [Jon Schlinkert](https://github.com/jonschlinkert). Released under the [MIT license](https://github.com/jonschlinkert/object.pick/blob/master/LICENSE). *** _This file was generated by [verb-generate-readme](https://github.com/verbose/verb-generate-readme), v0.2.0, on October 27, 2016._PK4`�\b��FFpackage.jsonnu�[���PK4`�\�wo�@@�LICENSEnu�[���PK4`�\�m vv�index.jsnu�[���PK4`�\��%k k �README.mdnu�[���PK$K
/home/emeraadmin/www/node_modules/raf/../debug/../debug/../array-slice/../../4d695/object.pick.zip