mirror of
https://github.com/Snigdha-OS/documentation.git
synced 2025-09-12 20:04:57 +02:00
10 lines
141 B
JavaScript
Executable File
10 lines
141 B
JavaScript
Executable File
'use strict';
|
|
|
|
const internals = {};
|
|
|
|
|
|
module.exports = function (promise) {
|
|
|
|
return !!promise && typeof promise.then === 'function';
|
|
};
|