Skip to content

Instantly share code, notes, and snippets.

@tonylampada
Last active February 27, 2017 22:13
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tonylampada/e708f5444596a389fa365dd6679b7fe1 to your computer and use it in GitHub Desktop.
Save tonylampada/e708f5444596a389fa365dd6679b7fe1 to your computer and use it in GitHub Desktop.
//mock api
var api = {
list_cameras: _mockpromise(list_cameras),
//other methods…
};
function list_cameras(filters){
return [
{name: ‘Camera do BBB’},
{name: ‘Camera 17’}
];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment