update
This commit is contained in:
@@ -0,0 +1,56 @@
|
||||
import dayjs from 'dayjs';
|
||||
import isToday from 'dayjs/plugin/isToday';
|
||||
import isYesterday from 'dayjs/plugin/isYesterday';
|
||||
import updateLocale from 'dayjs/plugin/updateLocale';
|
||||
import relativeTime from 'dayjs/plugin/relativeTime';
|
||||
import reactotron from 'reactotron-react-native';
|
||||
|
||||
// Dayjs plugins
|
||||
dayjs.extend(isToday);
|
||||
dayjs.extend(isYesterday);
|
||||
dayjs.extend(updateLocale);
|
||||
dayjs.extend(relativeTime);
|
||||
|
||||
/**
|
||||
* Return the distance between the given date and now in words.
|
||||
*/
|
||||
export const distanceToNow = value => {
|
||||
if (!dayjs(value).isValid()) {
|
||||
return 'Invalid Date';
|
||||
}
|
||||
return dayjs(value).fromNow();
|
||||
};
|
||||
|
||||
export const warn = reactotron.warn;
|
||||
|
||||
export function decode(t, e) {
|
||||
for (
|
||||
var n,
|
||||
o,
|
||||
u = 0,
|
||||
l = 0,
|
||||
r = 0,
|
||||
d = [],
|
||||
h = 0,
|
||||
i = 0,
|
||||
a = null,
|
||||
c = Math.pow(10, e || 5);
|
||||
u < t.length;
|
||||
|
||||
) {
|
||||
(a = null), (h = 0), (i = 0);
|
||||
do (a = t.charCodeAt(u++) - 63), (i |= (31 & a) << h), (h += 5);
|
||||
while (a >= 32);
|
||||
(n = 1 & i ? ~(i >> 1) : i >> 1), (h = i = 0);
|
||||
do (a = t.charCodeAt(u++) - 63), (i |= (31 & a) << h), (h += 5);
|
||||
while (a >= 32);
|
||||
|
||||
(o = 1 & i ? ~(i >> 1) : i >> 1),
|
||||
(l += n),
|
||||
(r += o),
|
||||
d.push([l / c, r / c]);
|
||||
}
|
||||
return d.map(function (t) {
|
||||
return {latitude: t[0], longitude: t[1]};
|
||||
});
|
||||
}
|
||||
Reference in New Issue
Block a user