10 examples of 'javascript check if object exists' in JavaScript

Every line of 'javascript check if object exists' code snippets is scanned for vulnerabilities by our powerful machine learning engine that combs millions of open source libraries, ensuring your JavaScript code is secure.

All examples are scanned by Snyk Code

By copying the Snyk Code Snippets you agree to
19function objectKeyExist(object)
20{
21 return _.some(object, function (o) {
22 return !_.isEmpty(_.pick(o, ['customer', 'cart']));
23 })
24}
148export function hasObject(objectId:string):boolean {
149 return _registeredObjects.hasOwnProperty(objectId) &&
150 _registeredObjects[objectId] !== null;
151}
194function internalCheck(oObject) {
195 if (oObject.__publicControl) {
196 return true;
197 }
198 if (!oObject) {
199 return false;
200 }
201 var oParent = oObject.getParent();
202 if (!oParent) {
203 return false;
204 }
205 if (oParent.__publicControl) {
206 var aList = that.findAllPublicElements(oParent, oCore).filter(function(oSingleControl) {
207 return oSingleControl.getId() === oControl.getId();
208 });
209 return aList.length > 0;
210 }
211 return internalCheck(oParent);
212}
17function CheckExists(id) {
18 var idName = "assets/" + id.toLowerCase();
19 var idNoExt = idName.substring(0, idName.lastIndexOf("."));
20 return allFiles.hasOwnProperty(idName) || allAssets.hasOwnProperty(idNoExt);
21}
81function valueExists(value: any) {
82 return value != null;
83}
11function exists(val) { return val !== null && val !== undefined }
876export function checkObject(object: EezObject): IMessage[] {
877 if (isArray(object)) {
878 const check = object._propertyInfo!.check;
879 if (check) {
880 return check(object);
881 }
882 } else {
883 if ((object as any).check) {
884 return (object as any).check();
885 }
886 }
887 return [];
888}
13static checkFunctionsOfObject(object, functions) {
14 functions.forEach(func => {
15 assert.equal(!!object[func], true);
16 });
17}
1function jsCheck(id)
2{
3 el=document.getElementById(id);
4 el.checked='checked';
5}
248function exists(plc, isEndpoint) { //place, boolean indicator if this place will be the start or stop
249 for(var i=0; i

Related snippets