Skip to content
Snippets Groups Projects
Select Git revision
  • 3801bec7ed2512b665a97fd9ed6283a7df9de5db
  • master default protected
2 results

sudoku.js

Blame
  • common.ts 276 B
    import is from '@sindresorhus/is';
    import type { GitlabInclude, GitlabIncludeLocal } from '../gitlabci/types';
    
    export function isGitlabIncludeLocal(
      include: GitlabInclude,
    ): include is GitlabIncludeLocal {
      return !is.undefined((include as GitlabIncludeLocal).local);
    }