Skip to content
View rapt0p7's full-sized avatar
:octocat:
Focusing
:octocat:
Focusing
  • Altente
  • Beograd, Serbia

Block or report rapt0p7

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
rapt0p7/README.md

Pinned Loading

  1. pink pink Public

    Учебный проект "Pink"

    CSS 1

  2. sedona sedona Public

    Учебный проект "Sedona"

    CSS 1

  3. Cancellable delayed function Cancellable delayed function
    1
    const cancellable =  ({ callback = () => {}, cancel = () => {}, flag = { execute: true } }) => (
    2
        ms = 0,
    3
        ...args
    4
    ) => {
    5
        delay(ms).then(() => flag.execute && callback.apply(null, args));