({ ...opts }, options = {})
| 5 | * @async |
| 6 | */ |
| 7 | export const createNewStandards = ({ ...opts }, options = {}) => |
| 8 | fetchJson('/db/standards', _.assign({}, options, { |
| 9 | method: 'POST', |
| 10 | json: { ...opts } |
| 11 | })) |
| 12 | |
| 13 | export const getStandards = () => fetchJson('/db/standards') |
nothing calls this directly
no outgoing calls
no test coverage detected