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

Block or report chenzitw

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. semantic-validator semantic-validator Public

    A functional semantic validator tool for validation of several types and rich content.

    TypeScript 34

  2. simple-rwd simple-rwd Public

    Very simple way for making Responsive Web Design.

    CSS 22 1

  3. isArrayDuplicated.js isArrayDuplicated.js
    1
    
                  
    2
    function isArrayDuplicated (array, ...getters) {
    3
      if (!Array.isArray(array) || getters.some(getter => typeof getter !== 'function')) {
    4
        return
    5
      }