mirror of
https://github.com/swc-project/swc.git
synced 2024-12-20 20:22:26 +03:00
32 lines
776 B
TypeScript
32 lines
776 B
TypeScript
|
// Loaded from https://deno.land/x/ramda@v0.27.2/source/internal/_dissoc.js
|
||
|
|
||
|
|
||
|
import _isInteger from './_isInteger.js';
|
||
|
import _isArray from './_isArray.js';
|
||
|
import remove from '../remove.js';
|
||
|
|
||
|
/**
|
||
|
* Returns a new object that does not contain a `prop` property.
|
||
|
*
|
||
|
* @private
|
||
|
* @param {String|Number} prop The name of the property to dissociate
|
||
|
* @param {Object|Array} obj The object to clone
|
||
|
* @return {Object} A new object equivalent to the original but without the specified property
|
||
|
*/
|
||
|
export default function _dissoc(prop, obj) {
|
||
|
if (obj == null) {
|
||
|
return obj;
|
||
|
}
|
||
|
|
||
|
if (_isInteger(prop) && _isArray(obj)) {
|
||
|
return remove(prop, 1, obj);
|
||
|
}
|
||
|
|
||
|
var result = {};
|
||
|
for (var p in obj) {
|
||
|
result[p] = obj[p];
|
||
|
}
|
||
|
delete result[prop];
|
||
|
return result;
|
||
|
}
|