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

Block or report erisnuts

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. BSF-Studio BSF-Studio Public

    Legacy project for demo (React, Redux)

    JavaScript 2

  2. task-board task-board Public

    test assignment

    JavaScript

  3. js generator js generator
    1
    function* dateGenerator(startDate = new Date()) {
    2
      let currentDate = startDate;
    3
      while (true) {
    4
        yield currentDate;
    5
        currentDate.setDate(currentDate.getDate() + 1);