urltomarkdown/node_modules/jest-util/build/isNonNullable.js

17 lines
363 B
JavaScript
Raw Normal View History

2022-12-23 12:03:25 +00:00
'use strict';
Object.defineProperty(exports, '__esModule', {
value: true
});
exports.default = isNonNullable;
2022-12-23 12:03:25 +00:00
/**
* Copyright (c) Meta Platforms, Inc. and affiliates.
2022-12-23 12:03:25 +00:00
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*/
function isNonNullable(value) {
return value != null;
2022-12-23 12:03:25 +00:00
}