One Paragraph of project description goes here
These instructions will get you a copy of the project up and running on your local machine for development and testing purposes. See deployment for notes on how to deploy the project on a live system.
# linux | |
rm -rf ~/.config/JetBrains/IntelliJIdea*/eval/*.evaluation.key ~/.config/JetBrains/IntelliJIdea*/options/other.xml ~/.java/.userPrefs/jetbrains/idea | |
# mac os | |
rm ~/Library/Application\ Support/JetBrains/IntelliJIdea*/eval/*.evaluation.key ~/Library/Application\ Support/JetBrains/IntelliJIdea*/options/other.xml ~/Library/Preferences/jetbrains.idea.* ~/Library/Preferences/com.apple.java.util.prefs.plist |
import { AsyncStorage } from 'react-native' | |
import { setGenericPassword, getGenericPassword, resetGenericPassword } from 'react-native-keychain' | |
export default { | |
async getAllKeys (callback) { | |
try { | |
const keys = await AsyncStorage.getAllKeys() | |
if (callback) { | |
callback(null, keys) | |
} |
<script src="https://cdnjs.cloudflare.com/ajax/libs/moment.js/2.20.1/moment.min.js"></script> | |
<script> | |
moment.locale(); | |
const data = [ | |
{ | |
datetime: "2018-01-03T13:07:46+00:00", | |
name: "breakfast" | |
}, | |
{ |