community-cordova-plugin-filepath 1.7.0 → 1.7.2

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/www/FilePath.js CHANGED
@@ -1,14 +1,14 @@
1
- var exec = require('cordova/exec');
2
-
3
-
4
- module.exports = {
5
- /**
6
- * Resolve native path for given content URL/path.
7
- * @param {String} path Content URL/path.
8
- * @param successCallback invoked with a native filesystem path string
9
- * @param errorCallback invoked if error occurs
10
- */
11
- resolveNativePath: function(path, successCallback, errorCallback) {
12
- exec(successCallback, errorCallback, "FilePath", "resolveNativePath", [path]);
13
- }
14
- };
1
+ var exec = require('cordova/exec');
2
+
3
+
4
+ module.exports = {
5
+ /**
6
+ * Resolve native path for given content URL/path.
7
+ * @param {String} path Content URL/path.
8
+ * @param successCallback invoked with a native filesystem path string
9
+ * @param errorCallback invoked if error occurs
10
+ */
11
+ resolveNativePath: function(path, successCallback, errorCallback) {
12
+ exec(successCallback, errorCallback, "FilePath", "resolveNativePath", [path]);
13
+ }
14
+ };