This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import Konva from 'konva'; | |
import { ShapeConfig } from 'konva/lib/Shape'; | |
export class HistoryStat { | |
private static _instance: HistoryStat; | |
public _currentStat: any[] = []; | |
private _currentPointer: number = -1; | |
private _history: Array<Object[]> = []; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
r.table("test").filter( function(doc) { | |
return doc("adresses").contains(function(adress) { | |
return adress("city").eq("Paris") | |
}) | |
}) | |
/* | |
{ |
OlderNewer