telegramhangoutsslackgmailskypefacebook-workplaceoutlookemailmicrosoft-teamsdiscordmessengercustom-servicesmacoslinuxwindowsinboxwhatsappicloudtweetdeckhipchat
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
360 B
15 lines
360 B
/** |
|
* This class contains utility methods for dealing with TSV (Tab Separated Values) as |
|
* specified in <a href="http://tools.ietf.org/html/rfc4180">RFC 4180</a>. |
|
* |
|
* For details see `{@link Ext.util.DelimitedValue}`. |
|
* |
|
* @since 5.1.0 |
|
*/ |
|
Ext.define('Ext.util.TSV', { |
|
extend: 'Ext.util.DelimitedValue', |
|
|
|
singleton: true, |
|
|
|
delimiter: '\t' |
|
});
|
|
|