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

Block or report andremury

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 Loading

  1. Mury12/mm-ws Mury12/mm-ws Public

    This is a tiny and simple PHP webservice model for a fast creation of APIs.

    PHP 3 1

  2. Mury12/mmws-core Mury12/mmws-core Public

    The core of mm-ws

    PHP 1

  3. Mury12/ts-job-runner Mury12/ts-job-runner Public

    Simple NodeJS job executor in Typescript with hooks and composable task queue

    TypeScript 1

  4. loop-styles-benchmark loop-styles-benchmark Public

    JavaScript

  5. map-filter.ts map-filter.ts
    1
    export const mapFilter = <T = unknown, U = unknown>(
    2
      arr: U[],
    3
      condition: (item: U) => boolean,
    4
      mapTo: (item: U) => T
    5
    ): T[] => {