dbm 1.4.5 → 1.4.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dbm.js +4 -0
- package/package.json +1 -1
package/dbm.js
CHANGED
|
@@ -89,6 +89,10 @@ export const getRepositoryItem = function(aName) {
|
|
|
89
89
|
return getInstance().repository.getItem(aName);
|
|
90
90
|
}
|
|
91
91
|
|
|
92
|
+
export const getRepositoryItemIfExists = function(aName) {
|
|
93
|
+
return getInstance().repository.getItemIfExists(aName);
|
|
94
|
+
}
|
|
95
|
+
|
|
92
96
|
export const getGraphApi = function() {
|
|
93
97
|
return getRepositoryItem("graphApi").controller;
|
|
94
98
|
}
|