chess.js icon indicating copy to clipboard operation
chess.js copied to clipboard

about promotion default value

Open jimmyyzr opened this issue 4 years ago • 2 comments
trafficstars

Hi, I wonder what is the default value of move.promotion? Can I decide whether the current move is a promotion by checking whether promotion === ''?

jimmyyzr avatar Jul 27 '21 14:07 jimmyyzr

You can check the flags property on the move object: https://github.com/jhlywa/chess.js#moves-options-

const isPromotion = move.flags.includes('p') 

jhlywa avatar Jul 27 '21 14:07 jhlywa

Thanks for your response! I have read the doc, am I able to check this flags only in the verbose mode, or it doesn't matter?

jimmyyzr avatar Jul 28 '21 02:07 jimmyyzr