1.0.0 • Published 7 years ago

is-azure-function v1.0.0

Weekly downloads
1
License
MIT
Repository
github
Last release
7 years ago

is-azure-function Build Status

Detect if your code is running in an Azure Function

Install

$ npm install --save is-azure-function

Usage

const isAzureFunction = require('is-azure-function');

if (isAzureFunction) {
	console.log('Running in an Azure Function');
}

Related

License

MIT © Sam Verschueren