Welcome to mirror list, hosted at ThFree Co, Russian Federation.

helpers.js « devel « js - github.com/nextcloud/ocsms.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 46f5e77d951e3fedb1a5687fad1bd9f0a8fc5268 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
/**
 * Nextcloud - Phone Sync
 *
 * This file is licensed under the Affero General Public License version 3 or
 * later. See the COPYING file.
 *
 * @author Loic Blot <loic.blot@unix-experience.fr>
 * @copyright Loic Blot 2014-2018
 */

function inArray(val, arr) {
	return ($.inArray(val, arr) !== -1);
}

function arrayUnique(arr) {
	return arr.filter(function (item, i, arr) {
		return i === arr.indexOf(item);
	});
}

function toBool(str) {
	if (str === "true") {
		return true;
	}
	else if (str === "false") {
		return false;
	}
	return null;
}