first commit

이 커밋은 다음에 포함됨:
root
2026-04-08 17:52:38 +08:00
커밋 70a2ca66f3
12436개의 변경된 파일1921163개의 추가작업 그리고 0개의 파일을 삭제
+14
파일 보기
@@ -0,0 +1,14 @@
/**
* Checks if a stack value for `key` exists.
*
* @private
* @name has
* @memberOf Stack
* @param {string} key The key of the entry to check.
* @returns {boolean} Returns `true` if an entry for `key` exists, else `false`.
*/
function stackHas(key) {
return this.__data__.has(key);
}
module.exports = stackHas;