Tiny module for checking if Promise are natively available.
npm install --save has-native-promise
const hasNativePromise = require('has-native-promise')
// on Node < 0.11.13
console.log(hasNativePromise()) // false
// on Node >= 0.11.13
console.log(hasNativePromise()) // true