All Downloads are FREE. Search and download functionalities are using the official Maven repository.

lib.xp.examples.node.exists-2.js Maven / Gradle / Ivy

The newest version!
var nodeLib = require('/lib/xp/node');
var assert = require('/lib/xp/testing');


// BEGIN
// Checks if a node exists
var myRepo = nodeLib.connect({
    repoId: 'my-repo',
    branch: 'master'
});

var result = myRepo.exists(
    '123'
);

// END


assert.assertTrue(result);






© 2015 - 2024 Weber Informatics LLC | Privacy Policy