Skip to content
View thlemercier's full-sized avatar
Block or Report

Block or report thlemercier

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned

  1. FetchWrapper.ts FetchWrapper.ts
    1
    /**
    2
     * Wrapper for Http Request.
    3
     * Uses fetch API.
    4
     * Mocks are using the following convention : '/pathx/pathy' is fetching ./mock_api/pathx.pathy.js
    5
     * pathx.pathy.js is a javascript file exporting a default element : export default { prop: 'value' } or export default [{ prop: 'value' }]
  2. DateDomain.js DateDomain.js
    1
    import { DateTime } from "luxon";
    2
    
                  
    3
    const DEFAULT_DATE = {
    4
        H24: { label: '24 Hours', hours: 24 },
    5
        D7: { label: '7 Days', hours: 24 * 7 },