mirror of
https://github.com/status-im/react-native-fs.git
synced 2025-02-28 23:10:29 +00:00
12 lines
160 B
JavaScript
12 lines
160 B
JavaScript
|
'use strict';
|
||
|
|
||
|
var warning = require('warning');
|
||
|
|
||
|
var FS = {
|
||
|
test: function() {
|
||
|
warning("Not yet implemented for Android.");
|
||
|
}
|
||
|
};
|
||
|
|
||
|
module.exports = FS;
|