(based on https://dev.mysql.com/doc/refman/8.0/en/ )
First, install the snap:
$ sudo snap install mysql --channel=8.0/beta
Print the help:
$ mysql.help
| { | |
| "name": "my-angular-app", | |
| "version": "1.0.0", | |
| "dependencies": { | |
| "some-library": "^1.0.0", | |
| "another-lib": "^2.0.0" | |
| }, | |
| "overrides": { | |
| "left-pad": "1.3.0", // Forcing a direct dependency | |
| "another-lib/lodash": "4.17.21", // Forcing a transitive dependency of another-lib |
(based on https://dev.mysql.com/doc/refman/8.0/en/ )
First, install the snap:
$ sudo snap install mysql --channel=8.0/beta
Print the help:
$ mysql.help
| /** Syntax for creating Set*/ | |
| const set = new Set(); | |
| /** Syntax for adding element to Set*/ | |
| set.add(4); // {4} | |
| set.add(5); // {4,5} | |
| set.add(4); // {4, 5} | |
| /** Syntax for deleting element to Set*/ | |
| set.delete(4); // {5} |
| function getWatchers(root) { | |
| root = angular.element(root || document.documentElement); | |
| var watcherCount = 0; | |
| function getElemWatchers(element) { | |
| var isolateWatchers = getWatchersFromScope(element.data().$isolateScope); | |
| var scopeWatchers = getWatchersFromScope(element.data().$scope); | |
| var watchers = scopeWatchers.concat(isolateWatchers); | |
| angular.forEach(element.children(), function (childElement) { | |
| watchers = watchers.concat(getElemWatchers(angular.element(childElement))); |
| // Copyright 2014–2017, Eric Holk | |
| // | |
| // Licensed under the Apache License, Version 2.0 (the "License"); | |
| // you may not use this file except in compliance with the License. | |
| // You may obtain a copy of the License at | |
| // | |
| // http://www.apache.org/licenses/LICENSE-2.0 | |
| // | |
| // Unless required by applicable law or agreed to in writing, software | |
| // distributed under the License is distributed on an "AS IS" BASIS, |
| exports.config = { | |
| allScriptsTimeout: 100000, | |
| //rootElement defaults to body. | |
| //If you don't have your ng-app in the body, you will get that error | |
| rootElement: 'body', | |
| directConnect: true, | |
| plugins: [ | |
| { | |
| inline: require('protractor-console'), | |
| logLevels: ['severe', 'warnings'] |