We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0ef14c5 commit ee994b8Copy full SHA for ee994b8
lib/node_modules/@stdlib/utils/common-keys/lib/main.js
@@ -29,9 +29,11 @@ var hasOwnProp = require( '@stdlib/assert/has-own-property' );
29
/**
30
* Returns the common own property names of two or more objects.
31
*
32
-* @param {...Object} obj - two or more objects
+* @param {*} obj1 - first object
33
+* @param {*} obj2 - second object
34
+* @param {...*} [obj] - additional objects
35
* @throws {Error} must provide at least two objects
-* @returns {Array} common keys of objects
36
+* @returns {(StringArray|EmptyArray)} common keys
37
38
* @example
39
* var obj = {
0 commit comments