當前位置: 首頁>>代碼示例>>TypeScript>>正文


TypeScript cuid.default函數代碼示例

本文整理匯總了TypeScript中cuid.default函數的典型用法代碼示例。如果您正苦於以下問題:TypeScript default函數的具體用法?TypeScript default怎麽用?TypeScript default使用的例子?那麽, 這裏精選的函數代碼示例或許可以為您提供幫助。


在下文中一共展示了default函數的8個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的TypeScript代碼示例。

示例1: handleErrors

 sock.on('canvas:create', handleErrors(authCheck(async (req: Protocol.CreateCanvasRequest, cb: Protocol.Callback<Protocol.CreateCanvasResponse>) => {
     const id = cuid();
     await dbConn.createCanvas(id);
     cb({
         success: true,
         id
     });
 })));
開發者ID:cschram,項目名稱:drawgaiden,代碼行數:8,代碼來源:session.ts

示例2: cuid

 (title: string) => ({
   type: ADD_TODO,
   payload: {
     id: cuid(),
     title: title,
     completed: false,
   },
 })
開發者ID:vin1992,項目名稱:react-redux-typescript-guide,代碼行數:8,代碼來源:actions.ts

示例3: cuid

    .concatMap((action) => { // action is type: { type: "ADD_TODO"; payload: string; }
      const toast = { id: cuid(), text: action.payload.title };

      const addToast$ = Observable.of(toastsActions.addToast(toast));
      const removeToast$ = Observable.of(toastsActions.removeToast(toast.id))
        .delay(TOAST_LIFETIME);

      return addToast$.concat(removeToast$);
    });
開發者ID:vin1992,項目名稱:react-redux-typescript-guide,代碼行數:9,代碼來源:epics.ts

示例4: addDocument

 /**
  * Adds a Page object to the internal index.
  *
  * @param {Page} page
  * @returns {Promise<IndexingReport>}
  */
 public addDocument(page: Page): Promise<IndexingReport> {
     this.index.addDoc({
         id: page.id,
         title: page.title,
         info: page.info,
         url: page.url
     });
     return Promise.resolve(
         {
             id: cuid(),
             docId: page.id,
             succeeded: true,
             timeStamp: new Date().toString()
         } as IndexingReport);
 }
開發者ID:brakmic,項目名稱:TroAPI,代碼行數:21,代碼來源:search.service.ts

示例5: escapeFormField

app.post( '/api/subscribe', (req, resp, done) => {
  let info  = {
    name: escapeFormField( req.body.name ),
    email: escapeFormField( req.body.email ),
    origin: escapeFormField( req.body.origin ),
    lang: escapeFormField( req.body.lang ),
    type: escapeFormField( req.body.type ),
    id: cuid()
  };

  fs.appendFile('subscribers.txt', JSON.stringify( info )+',\n', function (err) {
    sendMail( "book-sample-request.pt.html", info, (err) => {
      if ( !err ) {
        resp.status(200).json({success: "Email sent"});
      } else {
        resp.status(500).json({message: "Unable to send email:", error: err });
      }

      done();
    } )
  });
} );
開發者ID:essential-cryptography,項目名稱:essentialcryptography.com,代碼行數:22,代碼來源:server.ts

示例6: generateToken

export function generateToken () {
  const token = cuid().substr(1) + cuid().substr(1) // substr: get rid of the starting `c`
  return token.toUpperCase()
}
開發者ID:KiddoLin,項目名稱:wechaty,代碼行數:4,代碼來源:generate-token.ts

示例7: cuid

 _.forOwn(iterable, (value, key) => {
      result.push({key: key, value: value, id: cuid() });
 });
開發者ID:asiddeen,項目名稱:BiB,代碼行數:3,代碼來源:iterable.pipe.ts

示例8: generateToken

 public static generateToken() {
   const token = cuid().substr(1) + cuid().substr(1) // substr: get rid of the starting `c`
   return token.toUpperCase()
 }
開發者ID:miggame,項目名稱:wechaty,代碼行數:4,代碼來源:misc.ts


注:本文中的cuid.default函數示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。