mirror of
https://github.com/idanoo/GoScrobble
synced 2025-07-05 15:42:18 +00:00
9 lines
141 B
JavaScript
Executable file
9 lines
141 B
JavaScript
Executable file
'use strict';
|
|
|
|
const internals = {};
|
|
|
|
|
|
module.exports = function (promise) {
|
|
|
|
return !!promise && typeof promise.then === 'function';
|
|
};
|