forked from waja/action-debian-package
update
This commit is contained in:
parent
d9becc67b6
commit
9308795b8b
964 changed files with 104265 additions and 16 deletions
38
node_modules/ramda/src/hasIn.js
generated
vendored
Normal file
38
node_modules/ramda/src/hasIn.js
generated
vendored
Normal file
|
@ -0,0 +1,38 @@
|
|||
var _curry2 =
|
||||
/*#__PURE__*/
|
||||
require("./internal/_curry2");
|
||||
/**
|
||||
* Returns whether or not an object or its prototype chain has a property with
|
||||
* the specified name
|
||||
*
|
||||
* @func
|
||||
* @memberOf R
|
||||
* @since v0.7.0
|
||||
* @category Object
|
||||
* @sig s -> {s: x} -> Boolean
|
||||
* @param {String} prop The name of the property to check for.
|
||||
* @param {Object} obj The object to query.
|
||||
* @return {Boolean} Whether the property exists.
|
||||
* @example
|
||||
*
|
||||
* function Rectangle(width, height) {
|
||||
* this.width = width;
|
||||
* this.height = height;
|
||||
* }
|
||||
* Rectangle.prototype.area = function() {
|
||||
* return this.width * this.height;
|
||||
* };
|
||||
*
|
||||
* const square = new Rectangle(2, 2);
|
||||
* R.hasIn('width', square); //=> true
|
||||
* R.hasIn('area', square); //=> true
|
||||
*/
|
||||
|
||||
|
||||
var hasIn =
|
||||
/*#__PURE__*/
|
||||
_curry2(function hasIn(prop, obj) {
|
||||
return prop in obj;
|
||||
});
|
||||
|
||||
module.exports = hasIn;
|
Loading…
Add table
Add a link
Reference in a new issue