1234567891011121314151617181920212223242526272829303132333435363738394041 |
- "use strict";
- var _Object$defineProperty = require("@babel/runtime-corejs3/core-js-stable/object/define-property");
- var _interopRequireDefault = require("@babel/runtime-corejs3/helpers/interopRequireDefault");
- _Object$defineProperty(exports, "__esModule", {
- value: true
- });
- exports.PIN_PREFIX = exports.OBJECT_PREFIX = exports.DEFAULT_PIN = void 0;
- exports.isLocalDatastoreKey = isLocalDatastoreKey;
- var _startsWith = _interopRequireDefault(require("@babel/runtime-corejs3/core-js-stable/instance/starts-with"));
- /**
- * Copyright (c) 2015-present, Parse, LLC.
- * All rights reserved.
- *
- * This source code is licensed under the BSD-style license found in the
- * LICENSE file in the root directory of this source tree. An additional grant
- * of patent rights can be found in the PATENTS file in the same directory.
- *
- * @flow
- * @private
- */
- var DEFAULT_PIN = '_default';
- exports.DEFAULT_PIN = DEFAULT_PIN;
- var PIN_PREFIX = 'parsePin_';
- exports.PIN_PREFIX = PIN_PREFIX;
- var OBJECT_PREFIX = 'Parse_LDS_';
- exports.OBJECT_PREFIX = OBJECT_PREFIX;
- function isLocalDatastoreKey(key
- /*: string*/
- )
- /*: boolean*/
- {
- return !!(key && (key === DEFAULT_PIN || (0, _startsWith.default)(key).call(key, PIN_PREFIX) || (0, _startsWith.default)(key).call(key, OBJECT_PREFIX)));
- }
|