mirror of
https://github.com/actions/labeler.git
synced 2025-12-18 16:16:48 +00:00
4 lines
96 B
JavaScript
4 lines
96 B
JavaScript
module.exports = function isPromise (maybePromise) {
|
|
return maybePromise instanceof Promise
|
|
}
|