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

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

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

    JavaScript 2 1

  2. jest-xml-matcher jest-xml-matcher Public

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

    JavaScript 14 3

  3. react-notify-toast react-notify-toast Public

    Forked from jesusoterogomez/react-notify-toast

    Toast notifications for React.js

    JavaScript 1

  4. zazoomauro/node-dependency-injection zazoomauro/node-dependency-injection Public

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

    JavaScript 273 30

  5. freight-hub/TypedEnv freight-hub/TypedEnv Public

    Enforceable environment variable contracts at runtime

    TypeScript 45 3

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