فهرست منبع

[extract]: fix jsdoc

mightyplow 7 سال پیش
والد
کامیت
ed5015a1c3
1فایلهای تغییر یافته به همراه1 افزوده شده و 3 حذف شده
  1. 1 3
      src/object/extract.js

+ 1 - 3
src/object/extract.js

@@ -1,11 +1,9 @@
 /**
  * Creates a function which extracts some properties out of an object.
  *
- * @typedef {function} extractProps
- *
  * @memberOf object
  * @param {string[]} props
- * @return {function(obj: Object)}
+ * @return {Function}
  */
 
 const extract = (...props) => (obj) => {