2015-10-27 20:59:15 +00:00
|
|
|
/* Copyright 2015 Realm Inc - All Rights Reserved
|
|
|
|
* Proprietary and Confidential
|
|
|
|
*/
|
2015-10-06 07:57:35 +00:00
|
|
|
|
|
|
|
'use strict';
|
|
|
|
|
2015-10-08 23:19:19 +00:00
|
|
|
var Realm = require('realm');
|
|
|
|
|
2015-10-06 07:57:35 +00:00
|
|
|
exports.realmPathForFile = function(str) {
|
|
|
|
var path = Realm.defaultPath;
|
|
|
|
return path.substring(0, path.lastIndexOf("/") + 1) + str;
|
|
|
|
};
|