UNPKG

aws-crt

Version:

NodeJS bindings to the aws-c-* libraries

49 lines 1.58 kB
"use strict"; /* * Copyright 2010-2018 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). * You may not use this file except in compliance with the License. * A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "license" file accompanying this file. This file is distributed * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either * express or implied. See the License for the specific language governing * permissions and limitations under the License. */ Object.defineProperty(exports, "__esModule", { value: true }); /** Returns true if this script is running under nodejs */ function is_nodejs() { return (typeof process === 'object' && typeof process.versions === 'object' && typeof process.versions.node !== 'undefined'); } exports.is_nodejs = is_nodejs; /** Returns true if this script is running in a browser */ function is_browser() { return !is_nodejs(); } exports.is_browser = is_browser; /** Returns the package information for aws-crt-nodejs */ function package_info() { try { const pkg = require('../../package.json'); return pkg; } catch (err) { return { name: 'aws-crt-nodejs', version: 'UNKNOWN' }; } } exports.package_info = package_info; /** Returns the AWS CRT version */ function crt_version() { const pkg = package_info(); return pkg.version; } exports.crt_version = crt_version; //# sourceMappingURL=platform.js.map