Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/Netflix-Skunkworks/sketchy
/ functions
Functions
229 in github.com/Netflix-Skunkworks/sketchy
⨍
Functions
229
◇
Types & classes
15
↳
Endpoints
2
Function
cloneDeep
* Creates a deep clone of `value`. If a callback is provided it will be * executed to produce the cloned values. If the callback returns `undefin
sketchy/assets/lodash.js:1798
Function
compact
* Creates an array with all falsey values removed. The values `false`, `null`, * `0`, `""`, `undefined`, and `NaN` are all falsey. * *
sketchy/assets/lodash.js:4112
Function
compareAscending
* Used by `sortBy` to compare transformed `collection` elements, stable sorting * them in ascending order. * * @private * @param {Object}
sketchy/assets/lodash.js:257
Function
compose
* Creates a function that is the composition of the provided functions, * where each function consumes the return value of the function that foll
sketchy/assets/lodash.js:5282
Function
constant
* Creates a function that returns `value`. * * @static * @memberOf _ * @category Utilities * @param {*} value The value to re
sketchy/assets/lodash.js:5758
Function
contains
* Checks if a given value is present in a collection using strict equality * for comparisons, i.e. `===`. If `fromIndex` is negative, it is used
sketchy/assets/lodash.js:2979
Function
create
* Creates an object that inherits from the given `prototype` object. If a * `properties` object is provided its own enumerable properties are ass
sketchy/assets/lodash.js:1833
Function
createCallback
* Produces a callback bound to an optional `thisArg`. If `func` is a property * name the created callback will return the property value for a gi
sketchy/assets/lodash.js:5795
Function
create_db
Creates a database with all of the tables defined in your Alchemy models
manage.py:35
Function
curry
* Creates a function which accepts one or more arguments of `func` that when * invoked either executes `func` returning its result, if all `func`
sketchy/assets/lodash.js:5330
Function
decorated_function
(*args, **kwargs)
sketchy/__init__.py:89
Function
defer
* Defers executing the `func` function until the current call stack has cleared. * Additional arguments will be provided to `func` when it is inv
sketchy/assets/lodash.js:5490
Function
delay
* Executes the `func` function after `wait` milliseconds. Additional arguments * will be provided to `func` when it is invoked. * * @st
sketchy/assets/lodash.js:5514
Function
delayed
()
sketchy/assets/lodash.js:5398
Function
difference
* Creates an array excluding all values of the provided arrays using strict * equality for comparisons, i.e. `===`. * * @static *
sketchy/assets/lodash.js:4141
Function
drop_db
Drops a database with all of the tables defined in your Alchemy models
manage.py:51
Function
escape
* Converts the characters `&`, `<`, `>`, `"`, and `'` in `string` to their * corresponding HTML entities. * * @static * @memberOf
sketchy/assets/lodash.js:5844
Function
escapeHtmlChar
* Used by `escape` to convert characters to HTML entities. * * @private * @param {string} match The matched character to escape. *
sketchy/assets/lodash.js:1459
Function
escapeStringChar
* Used by `template` to escape characters for inclusion in compiled * string literals. * * @private * @param {string} match The matched ch
sketchy/assets/lodash.js:325
Function
every
* Checks if the given callback returns truey value for **all** elements of * a collection. The callback is bound to `thisArg` and invoked with th
sketchy/assets/lodash.js:3079
Function
find
* Iterates over elements of a collection, returning the first element that * the callback returns truey for. The callback is bound to `thisArg` a
sketchy/assets/lodash.js:3207
Function
findIndex
* This method is like `_.find` except that it returns the index of the first * element that passes the callback check, instead of the element its
sketchy/assets/lodash.js:4186
Function
findKey
* This method is like `_.findIndex` except that it returns the key of the * first element that passes the callback check, instead of the element
sketchy/assets/lodash.js:1921
Function
findLast
* This method is like `_.find` except that it iterates over elements * of a `collection` from right to left. * * @static * @member
sketchy/assets/lodash.js:3252
Function
findLastIndex
* This method is like `_.findIndex` except that it iterates over elements * of a `collection` from right to left. * * If a property nam
sketchy/assets/lodash.js:4240
Function
findLastKey
* This method is like `_.findKey` except that it iterates over elements * of a `collection` in the opposite order. * * If a property na
sketchy/assets/lodash.js:1974
Function
first
* Gets the first element or first `n` elements of an array. If a callback * is provided elements at the beginning of the array are returned as lo
sketchy/assets/lodash.js:4302
Function
flatten
* Flattens a nested array (the nesting can be to any depth). If `isShallow` * is truey, the array will only be flattened a single level. If a cal
sketchy/assets/lodash.js:4362
Function
forInRight
* This method is like `_.forIn` except that it iterates over elements * of a `collection` in the opposite order. * * @static * @me
sketchy/assets/lodash.js:2056
Method
get
Retrieve Captures based on id
sketchy/controllers/static_upload.py:36
Method
get
Retrieve Static based on id
sketchy/controllers/static_upload.py:53
Method
get
Retrieve all static records the database
sketchy/controllers/static_upload.py:91
Method
get
Retrieve Captures based on id
sketchy/controllers/controller.py:42
Method
get
Retrieve Captures based on id
sketchy/controllers/controller.py:60
Method
get
Retrieve all sketch records the database
sketchy/controllers/controller.py:97
Method
get_options
(self)
manage.py:69
Method
handle
(self, app, *args, **kwargs)
manage.py:86
Function
has
* Checks if the specified property name exists as a direct property of `object`, * instead of an inherited property. * * @static *
sketchy/assets/lodash.js:2182
Function
home
()
sketchy/__init__.py:133
Function
identity
* This method returns the first argument provided to it. * * @static * @memberOf _ * @category Utilities * @param {*} value A
sketchy/assets/lodash.js:5862
Method
init
(self, parser, opts, args)
manage.py:114
Function
initial
* Gets all but the last element or last `n` elements of an array. If a * callback is provided elements at the end of the array are excluded from
sketchy/assets/lodash.js:4460
Function
intersection
* Creates an array of unique values present in all provided arrays using * strict equality for comparisons, i.e. `===`. * * @static
sketchy/assets/lodash.js:4490
Function
invoke
* Invokes the method named by `methodName` on each element in the `collection` * returning an array of the results of each invoked method. Additi
sketchy/assets/lodash.js:3448
Function
isBoolean
* Checks if `value` is a boolean value. * * @static * @memberOf _ * @category Objects * @param {*} value The value to check.
sketchy/assets/lodash.js:2225
Function
isDate
* Checks if `value` is a date. * * @static * @memberOf _ * @category Objects * @param {*} value The value to check. * @r
sketchy/assets/lodash.js:2243
Function
isElement
* Checks if `value` is a DOM element. * * @static * @memberOf _ * @category Objects * @param {*} value The value to check.
sketchy/assets/lodash.js:2260
Function
isEmpty
* Checks if `value` is empty. Arrays, strings, or `arguments` objects with a * length of `0` and objects with no own enumerable properties are co
sketchy/assets/lodash.js:2285
Function
isEqual
* Performs a deep comparison between two values to determine if they are * equivalent to each other. If a callback is provided it will be execute
sketchy/assets/lodash.js:2341
Function
isFinite
* Checks if `value` is, or can be coerced to, a finite number. * * Note: This is not the same as native `isFinite` which will return true fo
sketchy/assets/lodash.js:2373
Function
isNaN
* Checks if `value` is `NaN`. * * Note: This is not the same as native `isNaN` which will return `true` for * `undefined` and other non
sketchy/assets/lodash.js:2447
Function
isNull
* Checks if `value` is `null`. * * @static * @memberOf _ * @category Objects * @param {*} value The value to check. * @r
sketchy/assets/lodash.js:2469
Function
isRegExp
* Checks if `value` is a regular expression. * * @static * @memberOf _ * @category Objects * @param {*} value The value to ch
sketchy/assets/lodash.js:2542
Function
isUndefined
* Checks if `value` is `undefined`. * * @static * @memberOf _ * @category Objects * @param {*} value The value to check.
sketchy/assets/lodash.js:2577
Function
last
* Gets the last element or last `n` elements of an array. If a callback is * provided elements at the end of the array are returned as long as th
sketchy/assets/lodash.js:4590
Function
lastIndexOf
* Gets the index at which the last occurrence of `value` is found using strict * equality for comparisons, i.e. `===`. If `fromIndex` is negative
sketchy/assets/lodash.js:4636
Function
list_routes
()
manage.py:126
Method
load
(self)
manage.py:120
Function
lodash
* Creates a `lodash` object which wraps the given value to enable intuitive * method chaining. * * In addition to Lo-Dash methods, wrap
sketchy/assets/lodash.js:587
Function
lodashWrapper
* A fast path for creating `lodash` wrapper objects. * * @private * @param {*} value The value to wrap in a `lodash` instance. * @
sketchy/assets/lodash.js:602
Function
make_shell_context
Creates a python REPL with several default imports in the context of the app
manage.py:27
Function
mapValues
* Creates an object with the same keys as `object` and values generated by * running each own enumerable property of `object` through the callbac
sketchy/assets/lodash.js:2617
Function
maxDelayed
()
sketchy/assets/lodash.js:5418
Function
memoize
* Creates a function that memoizes the result of `func`. If `resolver` is * provided it will be used to determine the cache key for storing the r
sketchy/assets/lodash.js:5559
Function
memoized
()
sketchy/assets/lodash.js:5563
Function
merge
* Recursively merges own enumerable properties of the source object(s), that * don't resolve to `undefined` into the destination object. Subseque
sketchy/assets/lodash.js:2678
Function
min
* Retrieves the minimum value of a collection. If the collection is empty or * falsey `Infinity` is returned. If a callback is provided it will b
sketchy/assets/lodash.js:3634
Function
noConflict
* Reverts the '_' variable to its previous value and returns a reference to * the `lodash` function. * * @static * @memberOf _
sketchy/assets/lodash.js:5950
Function
noop
()
sketchy/assets/capture.js:122
Function
noop
()
sketchy/assets/static.js:92
Function
noop
* A no-operation function. * * @static * @memberOf _ * @category Utilities * @example * * var object = { 'name': 'f
sketchy/assets/lodash.js:5967
Function
omit
* Creates a shallow clone of `object` excluding the specified properties. * Property names may be specified as individual arguments or as arrays
sketchy/assets/lodash.js:2734
Method
on_failure
(self, exc, task_id, args, kwargs, einfo)
sketchy/__init__.py:54
Function
once
* Creates a function that is restricted to execute `func` once. Repeat calls to * the function will return the value of the first call. The `func
sketchy/assets/lodash.js:5592
Function
pairs
* Creates a two dimensional array of an object's key-value pairs, * i.e. `[[key1, value1], [key2, value2]]`. * * @static * @member
sketchy/assets/lodash.js:2775
Function
partial
* Creates a function that, when called, invokes `func` with any additional * `partial` arguments prepended to those provided to the new function.
sketchy/assets/lodash.js:5630
Function
partialRight
* This method is like `_.partial` except that `partial` arguments are * appended to those provided to the new function. * * @static
sketchy/assets/lodash.js:5661
Function
pick
* Creates a shallow clone of `object` composed of the specified properties. * Property names may be specified as individual arguments or as array
sketchy/assets/lodash.js:2815
Method
post
Create a new Static Capture User must provide html file in multipart upload
sketchy/controllers/static_upload.py:101
Method
post
Retrieve Captures based on id
sketchy/controllers/controller.py:78
Method
post
Create a new sketch record and call celery tasks for populating record data
sketchy/controllers/controller.py:107
Function
pull
* Removes all provided values from the given array using strict equality for * comparisons, i.e. `===`. * * @static * @memberOf _
sketchy/assets/lodash.js:4666
Function
random
* Produces a random number between `min` and `max` (inclusive). If only one * argument is provided a number between `0` and the given number will
sketchy/assets/lodash.js:6069
Function
range
* Creates an array of numbers (positive and/or negative) progressing from * `start` up to but not including `end`. If `start` is less than `stop`
sketchy/assets/lodash.js:4717
Function
reduce
* Reduces a collection to a value which is the accumulated result of running * each element in the collection through the callback, where each su
sketchy/assets/lodash.js:3721
Function
reduceRight
* This method is like `_.reduce` except that it iterates over elements * of a `collection` from right to left. * * @static * @memb
sketchy/assets/lodash.js:3765
Function
reject
* The opposite of `_.filter` this method returns the elements of a * collection that the callback does **not** return truey for. * * If
sketchy/assets/lodash.js:3814
Function
remove
* Removes all elements from an array that the callback returns truey for * and returns an array of removed elements. The callback is bound to `th
sketchy/assets/lodash.js:4770
Method
remove_non_gunicorn_command_line_args
()
manage.py:92
Function
renderAndExit
()
sketchy/assets/capture.js:116
Function
renderAndExit
()
sketchy/assets/static.js:87
Function
rest
* The opposite of `_.initial` this method gets all but the first element or * first `n` elements of an array. If a callback function is provided
sketchy/assets/lodash.js:4839
Function
sample
* Retrieves a random element or `n` random elements from a collection. * * @static * @memberOf _ * @category Collections * @p
sketchy/assets/lodash.js:3840
Method
setUp
(self)
tests.py:27
Function
shimKeys
(object)
sketchy/assets/lodash.js:1592
Function
size
* Gets the size of the `collection` by returning `collection.length` for arrays * and array-like objects or the number of own enumerable properti
sketchy/assets/lodash.js:3899
Function
some
* Checks if the callback returns a truey value for **any** element of a * collection. The function returns as soon as it finds a passing value an
sketchy/assets/lodash.js:3946
Function
sortBy
* Creates an array of elements, sorted in ascending order by the results of * running each element in a collection through the callback. This met
sketchy/assets/lodash.js:4016
Function
tap
* Invokes `interceptor` with the `value` as the first argument and then * returns `value`. The purpose of this method is to "tap into" a method
sketchy/assets/lodash.js:6447
Method
tearDown
(self)
tests.py:31
← previous
next →
101–200 of 229, ranked by callers