UNPKG

create-expo-cljs-app

Version:

Create a react native application with Expo and Shadow-CLJS!

24 lines (19 loc) 786 B
"use strict"; exports.__esModule = true; exports.default = void 0; var _invariant = _interopRequireDefault(require("fbjs/lib/invariant")); function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } /** * Copyright (c) Facebook, Inc. and its affiliates. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. * * */ var ensurePositiveDelayProps = function ensurePositiveDelayProps(props) { (0, _invariant.default)(!(props.delayPressIn < 0 || props.delayPressOut < 0 || props.delayLongPress < 0), 'Touchable components cannot have negative delay properties'); }; var _default = ensurePositiveDelayProps; exports.default = _default; module.exports = exports.default;