UNPKG

@sap/generator-cap-project

Version:

Creates a new SAP Cloud Application Programming Model project.

16 lines (11 loc) 194 B
'use strict'; function isStream(stream) { if (!stream) { return false; } if (typeof stream.pipe !== 'function') { return false; } return true; } module.exports = isStream;