parse-server Show utils.js Source code
Return
Download parse-server:
download utils.js Source code
- Download parse-server Source code - Type:.js
- import Parse from 'parse/node';
- export function isPushIncrementing(body) {
- return body.data &&
- body.data.badge &&
- typeof body.data.badge == 'string' &&
- body.data.badge.toLowerCase() == "increment"
- }
- /**
- * Check whether the deviceType parameter in qury condition is valid or not.
- * @param {Object} where A query condition
- * @param {Array} validPushTypes An array of valid push types(string)
- */
- export function validatePushType(where = {}, validPushTypes = []) {
- var deviceTypeField = where.deviceType || {};
- var deviceTypes = [];
- if (typeof deviceTypeField === 'string') {
- deviceTypes.push(deviceTypeField);
- } else if (Array.isArray(deviceTypeField['$in'])) {
- deviceTypes.concat(deviceTypeField['$in']);
- }
- for (var i = 0; i < deviceTypes.length; i++) {
- var deviceType = deviceTypes[i];
- if (validPushTypes.indexOf(deviceType) < 0) {
- throw new Parse.Error(Parse.Error.PUSH_MISCONFIGURED,
- deviceType + ' is not supported push type.');
- }
- }
- }
downloadutils.js Source code
- Download parse-server Source code
Related Source Codes/Software:
clean-code-javascript - 2017-06-07
react-boilerplate - 2017-06-07
webtorrent - Streaming torrent client for the web
... 2017-06-06
machine-learning-for-software-engineers - A complete daily plan for studying to become a mac... 2017-06-06
upterm - A terminal emulator for the 21st century. 2017-06-06
lottie-android - Render After Effects animations natively on Androi... 2017-06-07
AsyncDisplayKit - Smooth asynchronous user interfaces for iOS apps.
... 2017-06-07
ionicons - The premium icon font for Ionic
... 2017-06-07
storybook - 2017-06-07
prettier - Prettier is an opinionated JavaScript formatter.
... 2017-06-08
CRYENGINE - CRYENGINE is a powerful real-time game development... 2017-06-11
postal - 2017-06-11
reactide - Reactide is the first dedicated IDE for React web ... 2017-06-11
rkt - rkt is a pod-native container engine for Linux. It... 2017-06-11
uWebSockets - Tiny WebSockets
https://for... 2017-06-11
realworld - TodoMVC for the RealWorld - Exemplary fullstack Me... 2017-06-11
goreplay - GoReplay is an open-source tool for capturing and ... 2017-06-10
pyenv - Simple Python version management 2017-06-10
redux-saga - An alternative side effect model for Redux apps
... 2017-06-10
angular-starter - 2017-06-10