file.getConfig()



This method returns a copy of the config object that was passed to pjs.defineTable(). 

Return Value

A copy of the file config object.

Example

Retrieve copy of file configuration object
pjs.defineTable("myfile", { keyed: true, read: true }); var config = myfile.getConfig(); // An object like this is returned: { keyed: true, read: true }

Requirements

This API requires the Profound.js Connector module.