Skip to content
View kbiedrzycki's full-sized avatar
🤔
Are you sure it should work this way?
🤔
Are you sure it should work this way?

Organizations

@infoshareacademy

Block or report kbiedrzycki

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. stencil-poc Public

    Monorepo to tryout Stencil.js and it's powers in different JS frameworks

    JavaScript 2 1

  2. jest-xml-matcher Public

    Custom jest matcher which can be used to find differences between XML structures

    JavaScript 16 3

  3. react-notify-toast Public

    Forked from jesusoterogomez/react-notify-toast

    Toast notifications for React.js

    JavaScript 1

  4. zazoomauro/node-dependency-injection Public

    The NodeDependencyInjection component allows you to standarize and centralize the way objects are constructed in your application.

    JavaScript 284 35

  5. freight-hub/TypedEnv Public archive

    Enforceable environment variable contracts at runtime

    TypeScript 45 2

  6. Function for checking if number is p...
    1
    module.exports = function(value) {
    2
      const primeVerifyExpression = /^1?$|^(11+?)\1+$/;
    3
      const unaryValue = '1'.repeat(value);
    4
    
                  
    5
      return !primeVerifyExpression.test(unaryValue);