mirror of
https://github.com/status-im/realm-js.git
synced 2025-01-10 22:36:01 +00:00
13 lines
276 B
JavaScript
13 lines
276 B
JavaScript
/* Copyright 2015 Realm Inc - All Rights Reserved
|
|
* Proprietary and Confidential
|
|
*/
|
|
|
|
'use strict';
|
|
|
|
var Realm = require('realm');
|
|
|
|
exports.realmPathForFile = function(str) {
|
|
var path = Realm.defaultPath;
|
|
return path.substring(0, path.lastIndexOf("/") + 1) + str;
|
|
};
|